Workflows
List workflow execution events
Retrieve events for a workflow execution in reverse chronological order (most recent first).
Use limit, after, and before for cursor pagination. Cursors are returned in the paging object.
GET
List workflow execution events
Authorizations
Path Parameters
Execution identifier
Query Parameters
Filter by event type
Maximum number of results per cursor-paginated page (default 20, max 100).
Required range:
1 <= x <= 100Cursor for the previous page (Base64 encoded).
Cursor for the next page (Base64 encoded).
Previous
Resume waiting workflow executionResume a workflow execution that is in 'waiting' status. Workflows enter waiting status when they reach a wait_for_response step or are explicitly paused.
Send a message with:
- `kind`: Message type, defaults to "payload" if omitted
- `data`: The actual payload - can be a string for simple text responses (e.g., "yes", "no") or an object for structured data (e.g., button clicks, form submissions)
Optionally include variables to update the execution context:
- `variables`: Key-value pairs to merge into the execution context. These will be available in subsequent workflow steps as `{{var_name}}`. Existing variables with the same key will be overwritten.
After resuming, the workflow will continue processing from the waiting step with the provided message data and updated variables.
**Response**: Returns minimal execution data (id, status, tracking_id, timestamps, workflow, current_step). Does not include execution_context or events. Use GET /workflow_executions/{id} to retrieve full execution details.
Next
List workflow execution events

