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

1.1 KiB

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-start-invocation-input StartInvocationInput StartInvocationInput StartInvocationInput pythonsdk
python
Python
sdk
StartInvocationInput
V2024StartInvocationInput
/tools/sdk/python/v2024/models/start-invocation-input
SDK
Software Development Kit
StartInvocationInput
V2024StartInvocationInput

StartInvocationInput

Properties

Name Type Description Notes
trigger_id str Trigger ID [optional]
input object Trigger input payload. Its schema is defined in the trigger definition. [optional]
content_json object JSON map of invocation metadata [optional]
}

Example

from sailpoint.v2024.models.start_invocation_input import StartInvocationInput

start_invocation_input = StartInvocationInput(
trigger_id='idn:access-requested',
input={identityId=201327fda1c44704ac01181e963d463c},
content_json={workflowId=1234}
)

[Back to top]