Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/Invocation.md
2025-04-01 09:23:12 -04: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
v2025-invocation Invocation Invocation Invocation pythonsdk
python
Python
sdk
Invocation
V2025Invocation
/tools/sdk/python/v2025/models/invocation
SDK
Software Development Kit
Invocation
V2025Invocation

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.v2025.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]