Skip to main content

Invocation

Properties

NameTypeDescriptionNotes
idstrInvocation ID[optional]
trigger_idstrTrigger ID[optional]
secretstrUnique invocation secret.[optional]
content_jsonobjectJSON map of invocation metadata.[optional]
}

Example

from sailpoint.beta.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]