Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/StartInvocationInput.md
2025-01-28 13:29:29 -05:00

1.4 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 powershellsdk
powershell
PowerShell
sdk
StartInvocationInput
V2024StartInvocationInput
/tools/sdk/powershell/v2024/models/start-invocation-input
SDK
Software Development Kit
StartInvocationInput
V2024StartInvocationInput

StartInvocationInput

Properties

Name Type Description Notes
TriggerId Pointer to String Trigger ID [optional]
VarInput Pointer to [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 Trigger input payload. Its schema is defined in the trigger definition. [optional]
ContentJson Pointer to [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 JSON map of invocation metadata [optional]

Examples

  • Prepare the resource
$StartInvocationInput = Initialize-PSSailpoint.V2024StartInvocationInput  -TriggerId idn:access-requested `
 -VarInput {identityId=201327fda1c44704ac01181e963d463c} `
 -ContentJson {workflowId=1234}
  • Convert the resource to JSON
$StartInvocationInput | ConvertTo-JSON

[Back to top]