GET
/
api
/
v1
/
workflows
/
executions
curl --request GET \
  --url https://workflow-app.thena.ai/api/v1/workflows/executions \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "workflowId": "<string>",
  "version": 123,
  "status": "<string>",
  "context": {},
  "startedAt": "2023-11-07T05:31:56Z",
  "lastUpdatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Enter your API key

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)

Response

200
application/json

Operation successful

The response is of type object.