curl --request GET \
--url https://api-dev.narrative.io/workflows/{workflow_id}/runs \
--header 'Authorization: Bearer <token>'{
"runs": [
{
"run_id": "b7e3f1a2-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
"status": "completed",
"start_time": "2025-01-15T10:30:00Z",
"close_time": "2025-01-15T10:35:00Z"
}
],
"next_page_token": "eyJsYXN0UnVuSWQiOiJhYmMxMjMifQ=="
}List execution runs for a workflow. Returns a paginated list of runs with their status, start time, and close time.
Results are ordered by start time descending (most recent first).
curl --request GET \
--url https://api-dev.narrative.io/workflows/{workflow_id}/runs \
--header 'Authorization: Bearer <token>'{
"runs": [
{
"run_id": "b7e3f1a2-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
"status": "completed",
"start_time": "2025-01-15T10:30:00Z",
"close_time": "2025-01-15T10:35:00Z"
}
],
"next_page_token": "eyJsYXN0UnVuSWQiOiJhYmMxMjMifQ=="
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique identifier for a workflow.
The maximum number of runs to return per page. Defaults to 10.
1 <= x <= 100Opaque token from a previous response to retrieve the next page of results.
A paginated list of workflow runs.
Was this page helpful?