Skip to main content

Startinvocationinput

Properties

NameTypeDescriptionNotes
trigger_idstrTrigger ID[optional]
inputobjectTrigger input payload. Its schema is defined in the trigger definition.[optional]
content_jsonobjectJSON map of invocation metadata[optional]
}

Example

from sailpoint.triggers.models.startinvocationinput import Startinvocationinput

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

[Back to top]