Skip to main content

Startinvocationinput

Properties

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

Examples

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

[Back to top]