v1

latestOpenAPI 3.0.02026-07-26870415.2 KB
workflows

List workflow execution events

Returns the paginated, step-level event log for a single workflow execution. Ascending by timestamp by default. Payload summaries have credential/raw-request material redacted.

get/v1/workflow-executions/{id}/events

Path parameters

idstring required

Workflow execution identifier.

Example:e11demo8f8x7c9v0n2q4r6t8y1u3i5o

Query parameters

workspace_idstring

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

Example:j57demo8f8x7c9v0n2q4r6t8y1u3i5o
limitinteger
cursorstring
order'asc' | 'desc'

Sort order by event timestamp. Ascending by default.

Example:asc

Response

Workflow execution events

next_cursorstring nullable required
has_moreboolean required

Example response

{
  "data": [
    {
      "event_id": "v42demo8f8x7c9v0n2q4r6t8y1u3i5o",
      "step_id": "s31demo8f8x7c9v0n2q4r6t8y1u3i5o",
      "step_name": "Send welcome message",
      "type": "SENT_MESSAGE",
      "status": null,
      "timestamp": "2026-04-03T03:14:16.000Z",
      "payload_summary": {
        "type": "SENT_MESSAGE",
        "messageIds": [
          "..."
        ]
      }
    }
  ],
  "next_cursor": "page-token",
  "has_more": true
}