Skip to main content

Get a Workflow Execution

GET 

/workflow-executions/:id

Get a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.

Request

Path Parameters

    id stringrequired

    Id of the workflow execution

Responses

The workflow execution

Schema
  • Array [
  • id string

    The workflow execution ID

    workflowId string

    The workflow ID

    requestId string

    This backend ID tracks a workflow request in the system. You can provide this ID in a customer support ticket for debugging purposes.

    startTime date-time

    The date/time the workflow started

    closeTime date-time

    The date/time the workflow ended

    status string

    Possible values: [Completed, Failed, Canceled, Running]

    The workflow execution status

  • ]
Loading...