Event
Payload Example
Payload Fields
Envelope
| Field | Type | Description |
|---|---|---|
event | string | Always flows.tasks.step_change |
event_id | string | Unique delivery ID — use to deduplicate retries |
organization_id | string | ID of the organization |
timestamp | string | ISO 8601 UTC timestamp of the event |
data | object | Event-specific payload (see below) |
Data Object
| Field | Type | Description |
|---|---|---|
task_id | string | Unique identifier of the task |
workflow_id | string | ID of the parent workflow |
workflow_name | string | Human-readable workflow name |
previous_step | object | Details of the step that was just completed |
current_step | object | Details of the step the task moved into |
Previous Step Object
| Field | Type | Description |
|---|---|---|
step_id | string | Unique identifier of the completed step |
step_name | string | Human-readable step name |
completed_by | string | Email of the user who completed the step |
completed_at | string | ISO 8601 UTC timestamp of completion |
outcome | string | Step outcome (e.g., approved, rejected, submitted) |
Current Step Object
| Field | Type | Description |
|---|---|---|
step_id | string | Unique identifier of the new step |
step_name | string | Human-readable step name |
assignee | string | Email of the user assigned to this step |