curl --request GET \
--url https://api.example.com/workflow-executions \
--cookie fastapiusersauth=[
{
"id": "<string>",
"run_id": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"status": "RUNNING",
"workflow_type": "<string>",
"task_queue": "<string>",
"history_length": 123,
"execution_time": "2023-11-07T05:31:56Z",
"close_time": "2023-11-07T05:31:56Z",
"parent_wf_exec_id": "<string>"
}
]List all workflow executions.
curl --request GET \
--url https://api.example.com/workflow-executions \
--cookie fastapiusersauth=[
{
"id": "<string>",
"run_id": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"status": "RUNNING",
"workflow_type": "<string>",
"task_queue": "<string>",
"history_length": 123,
"execution_time": "2023-11-07T05:31:56Z",
"close_time": "2023-11-07T05:31:56Z",
"parent_wf_exec_id": "<string>"
}
]Trigger type for a workflow execution.
manual, scheduled, webhook wf_[0-9a-zA-Z]+Successful Response
The ID of the workflow execution
The run ID of the workflow execution
The start time of the workflow execution
RUNNING, COMPLETED, FAILED, CANCELED, TERMINATED, CONTINUED_AS_NEW, TIMED_OUT Number of events in the history
When this workflow run started or should start.
When the workflow was closed if closed.
(?P<workflow_id>wf-[0-9a-f]{32}|wf_[0-9a-zA-Z]+)[:/](?P<execution_id>(exec_[0-9a-zA-Z]+|exec-[\w-]+|sch-[0-9a-f]{32}-.*))Was this page helpful?