GET
/
api
/
v1
/
workflows
/
executions
{
  "results": [
    {
      "id": "<string>",
      "workflowId": "<string>",
      "version": 123,
      "status": "<string>",
      "context": {},
      "startedAt": "2023-11-07T05:31:56Z",
      "lastUpdatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

Query Parameters

workflowId
string
required

The unique identifier of the workflow

version
number

The version of the workflow

status
enum<string>

The status of the workflow execution

Available options:
PENDING,
SCHEDULED,
EXECUTING_ACTIVITIES,
FINISHED,
FAILED,
RETRYING,
COMPENSATING,
SUSPENDED
from
string

The start date from which to fetch executions by (in epoch time)

to
string

The end date to which to fetch executions by (in epoch time)

page
number

The page number to fetch executions by

limit
number

The limit of executions to fetch

Response

200
application/json
Operation successful
results
object[]
required
total
number
required