Skip to main content

Get Workflow Execution History

GET 

/workflow-executions/:id/history

Get a detailed history of 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

List of workflow execution events for the given workflow execution

Schema
  • Array [
  • type

    Possible values: [WorkflowExecutionScheduled, WorkflowExecutionStarted, WorkflowExecutionCompleted, WorkflowExecutionFailed, WorkflowTaskScheduled, WorkflowTaskStarted, WorkflowTaskCompleted, WorkflowTaskFailed, ActivityTaskScheduled, ActivityTaskStarted, ActivityTaskCompleted, ActivityTaskFailed]

    The type of event

    timestamp date-time

    The date-time when the event occurred

    attributes object

    Additional attributes associated with the event

  • ]
Loading...