Task Deleted
Webhook payload reference for the issues.destroy event, triggered when a task is permanently deleted.
Triggered when a task is permanently deleted.
- Event:
issues.destroy - Category: Tasks
- Triggers: Deleting a task from the Kanban board, task details, or batch deletion
Payload
Only the task UUID is sent. The full resource is not included.
{
"uuid": "abc123-def456-ghi789"
}Field Reference
| Field | Type | Description |
|---|---|---|
uuid | string | UUID of the deleted task |
Notes
- The webhook fires before the task is fully removed from the database.
- Only the UUID is provided — the full task data is no longer available after deletion.
- If you need task details for audit logging, store task data when you receive
issues.storeorissues.updateevents. - Batch deletions fire one webhook per deleted task.
Related
- Task Created —
issues.store - Task Updated —
issues.update