Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/Invocation.md
2025-02-20 12:59:19 -05:00

986 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-invocation Invocation Invocation Invocation pythonsdk
python
Python
sdk
Invocation
V2024Invocation
/tools/sdk/python/v2024/models/invocation
SDK
Software Development Kit
Invocation
V2024Invocation

Invocation

Properties

Name Type Description Notes
id str Invocation ID [optional]
trigger_id str Trigger ID [optional]
secret str Unique invocation secret. [optional]
content_json object JSON map of invocation metadata. [optional]
}

Example

from sailpoint.v2024.models.invocation import Invocation

invocation = Invocation(
id='0f11f2a4-7c94-4bf3-a2bd-742580fe3bde',
trigger_id='idn:access-requested',
secret='0f979022-08be-44f2-b6f9-7393ec73ed9b',
content_json={workflowId=1234}
)

[Back to top]