GitScrum / Docs

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

FieldTypeDescription
task.uuidstringUUID of the moved task
workflow.idintegerNew workflow column ID
workflow.titlestringNew column name
workflow.stateinteger0 = open, 1 = closed
workflow.colorstringColumn color (hex without #)

Notes

  • The workflow object is only present when the workflow column actually changed.
  • If the task was reordered within the same column, workflow may be absent.
  • The payload does not include the previous column — only the new destination.
  • The full task resource is not sent. Use the task uuid to fetch current data via API if needed.