Skip to main content

WorkflowExecution

Properties

NameTypeDescriptionNotes
IdStringWorkflow execution ID.[optional]
WorkflowIdStringWorkflow ID.[optional]
RequestIdStringBackend ID that tracks a workflow request in the system. Provide this ID in a customer support ticket for debugging purposes.[optional]
StartTimeSystem.DateTimeDate/time when the workflow started.[optional]
CloseTimeSystem.DateTimeDate/time when the workflow ended.[optional]
StatusEnum [ "Completed", "Failed", "Canceled", "Executing" ]Workflow execution status.[optional]

Examples

  • Prepare the resource
$WorkflowExecution = Initialize-PSSailpoint.BetaWorkflowExecution  -Id b393f4e2-4785-4d7f-ab27-3a6b8ded4c81 `
-WorkflowId d201c5d9-d37b-4a2f-af14-66414f39d568 `
-RequestId 41e12a74fa7b4a6a98ae47887b64acdb `
-StartTime 2022-02-07T20:13:29.356648026Z `
-CloseTime 2022-02-07T20:13:31.682410165Z `
-Status Completed
  • Convert the resource to JSON
$WorkflowExecution | ConvertTo-JSON

[Back to top]