Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/TestInvocation.md
2025-04-01 09:23:12 -04:00

1.3 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
v2025-test-invocation TestInvocation TestInvocation TestInvocation pythonsdk
python
Python
sdk
TestInvocation
V2025TestInvocation
/tools/sdk/python/v2025/models/test-invocation
SDK
Software Development Kit
TestInvocation
V2025TestInvocation

TestInvocation

Properties

Name Type Description Notes
trigger_id str Trigger ID [required]
input object Mock input to use for test invocation. This must adhere to the input schema defined in the trigger being invoked. If this property is omitted, then the default trigger sample payload will be sent. [optional]
content_json object JSON map of invocation metadata. [required]
subscription_ids []str Only send the test event to the subscription IDs listed. If omitted, the test event will be sent to all subscribers. [optional]
}

Example

from sailpoint.v2025.models.test_invocation import TestInvocation

test_invocation = TestInvocation(
trigger_id='idn:access-request-post-approval',
input={identityId=201327fda1c44704ac01181e963d463c},
content_json={workflowId=1234},
subscription_ids=[0f11f2a4-7c94-4bf3-a2bd-742580fe3bde]
)

[Back to top]