Sprint Deleted
Webhook payload reference for the sprints.destroy event, triggered when a sprint is deleted.
Triggered when a sprint is deleted from the project.
- Event:
sprints.destroy - Category: Sprints
- Triggers: Deleting a sprint from the sprints panel
Payload
This event sends a minimal payload with only the identifier:
{
"uuid": "sprint-q1-week-3"
}Field Reference
| Field | Type | Description |
|---|---|---|
uuid | string | The sprint slug (not a UUID) |
Notes
- The
uuidfield contains the sprint slug, not a standard UUID. - The full sprint resource is not included — the record has already been deleted.
- Store sprint data from
sprints.storeorsprints.updateevents if you need it after deletion. - Deleting a sprint does not delete its tasks — they become unassigned from sprints.
Related
- Sprint Created —
sprints.store - Sprint Updated —
sprints.update