GitScrum / Docs

Assignee Removed

Webhook payload reference for the issues.assignees.destroy event, triggered when a user is unassigned from a task.

Triggered when a user is removed from a task.

  • Event: issues.assignees.destroy
  • Category: Tasks
  • Triggers: Removing an assignee from the task details panel

Payload

{
  "task": {
    "uuid": "abc123-def456-ghi789"
  },
  "user": {
    "id": 5,
    "uuid": "user-uuid-456",
    "name": "John Doe",
    "username": "johndoe",
    "avatar": "https://avatar.url/john.jpg",
    "headline": "Frontend Developer",
    "location": "Lisbon, Portugal",
    "timezone_name": "Europe/Lisbon",
    "language": "en",
    "created_at": {
      "date_for_humans": "6 months ago",
      "iso8601": "2025-08-06T09:00:00+00:00",
      "timestamp": 1754470800
    }
  }
}

Field Reference

Same structure as Assignee Added. Contains the task UUID and the removed user's details.