mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 04:19:16 +00:00
35 lines
962 B
YAML
35 lines
962 B
YAML
type: object
|
|
properties:
|
|
id:
|
|
type: string
|
|
description: The workflow execution ID
|
|
example: b393f4e2-4785-4d7f-ab27-3a6b8ded4c81
|
|
workflowId:
|
|
type: string
|
|
description: The workflow ID
|
|
example: d201c5d9-d37b-4a2f-af14-66414f39d568
|
|
requestId:
|
|
type: string
|
|
description: This backend ID tracks a workflow request in the system. You can provide this ID in a customer support ticket for debugging purposes.
|
|
example: 41e12a74fa7b4a6a98ae47887b64acdb
|
|
startTime:
|
|
type: string
|
|
format: date-time
|
|
description: The date/time the workflow started
|
|
example: "2022-02-07T20:13:29.356648026Z"
|
|
closeTime:
|
|
type: string
|
|
format: date-time
|
|
description: The date/time the workflow ended
|
|
example: "2022-02-07T20:13:31.682410165Z"
|
|
status:
|
|
description: The workflow execution status
|
|
type: string
|
|
enum:
|
|
- "Completed"
|
|
- "Failed"
|
|
- "Canceled"
|
|
- "Running"
|
|
example: "Completed"
|
|
|