Task Moved (Board)
Webhook payload reference for the issues.move.board event, triggered when a task moves between board columns.
Triggered when a task moves between workflow columns on the Kanban board.
- Event:
issues.move.board - Category: Tasks
- Triggers: Dragging a task to a different column, or changing workflow status via task details
Payload
{
"task": {
"uuid": "abc123-def456-ghi789"
},
"workflow": {
"id": 3,
"title": "In Progress",
"state": 0,
"color": "3B82F6"
}
}Field Reference
| Field | Type | Description |
|---|---|---|
task.uuid | string | UUID of the moved task |
workflow.id | integer | New workflow column ID |
workflow.title | string | New column name |
workflow.state | integer | 0 = open, 1 = closed |
workflow.color | string | Column color (hex without #) |
Notes
- The
workflowobject is only present when the workflow column actually changed. - If the task was reordered within the same column,
workflowmay be absent. - The payload does not include the previous column — only the new destination.
- The full task resource is not sent. Use the task
uuidto fetch current data via API if needed.
Related
- Task Updated —
issues.update - Task Moved (Project) —
issues.move.project