v1

latestOpenAPI 3.0.02026-07-26870415.2 KB
workflows

List workflow executions

Returns the paginated run history for a workflow, newest first. Filter by status and by started_after / started_before.

get/v1/workflows/{id}/executions

Path parameters

idstring required

Workflow (version) identifier.

Example:k17demo8f8x7c9v0n2q4r6t8y1u3i5o

Query parameters

workspace_idstring

Optional workspace override. If omitted, Conduit resolves the workflow's workspace automatically.

Example:j57demo8f8x7c9v0n2q4r6t8y1u3i5o
limitinteger
cursorstring
status'STARTED' | 'RUNNING' | 'SUCCESS' | 'FAILED' | 'CANCELLED'

Filter executions by lifecycle status.

Example:SUCCESS
started_afterstring date-time

Only return executions started at or after this ISO 8601 timestamp.

Example:2026-04-01T00:00:00.000Z
started_beforestring date-time

Only return executions started strictly before this ISO 8601 timestamp.

Example:2026-04-30T00:00:00.000Z

Response

Workflow executions

next_cursorstring nullable required
has_moreboolean required

Example response

{
  "data": [
    {
      "execution_id": "e11demo8f8x7c9v0n2q4r6t8y1u3i5o",
      "workflow_id": "k17demo8f8x7c9v0n2q4r6t8y1u3i5o",
      "master_id": "m92demo8f8x7c9v0n2q4r6t8y1u3i5o",
      "status": "SUCCESS",
      "trigger_source": "RESERVATION_NEW",
      "started_at": "2026-04-03T03:14:15.000Z",
      "ended_at": "2026-04-03T03:14:18.000Z",
      "error_summary": null
    }
  ],
  "next_cursor": "page-token",
  "has_more": true
}