Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/WorkflowExecution.md
2025-04-24 19:31:33 +00:00

1.6 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-workflow-execution WorkflowExecution WorkflowExecution WorkflowExecution powershellsdk
powershell
PowerShell
sdk
WorkflowExecution
V2024WorkflowExecution
/tools/sdk/powershell/v2024/models/workflow-execution
SDK
Software Development Kit
WorkflowExecution
V2024WorkflowExecution

WorkflowExecution

Properties

Name Type Description Notes
Id String Workflow execution ID. [optional]
WorkflowId String Workflow ID. [optional]
RequestId String Backend ID that tracks a workflow request in the system. Provide this ID in a customer support ticket for debugging purposes. [optional]
StartTime System.DateTime Date/time when the workflow started. [optional]
CloseTime System.DateTime Date/time when the workflow ended. [optional]
Status Enum [ "Completed", "Failed", "Canceled", "Queued", "Running" ] Workflow execution status. [optional]

Examples

  • Prepare the resource
$WorkflowExecution = Initialize-PSSailpoint.V2024WorkflowExecution  -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]