Event triggered when a project is permanently deleted from your workspace, either through the dashboard or via the API.
Project deletion is irreversible. All related data including jobs, files, and client access records are also removed.
Response Body Parameters
All webhook payloads follow a consistent top-level structure with event-specific data nested within the data object.
Unique identifier for this delivery. Use this to deduplicate events.
The event type that triggered the webhook (e.g., project.deleted).
Unix timestamp (milliseconds) when the event was delivered.
The workspace where the event occurred.
Contains only the ID of the deleted project.
Unique identifier of the deleted project.
{
"delivery_id": "019d4d36-1bc1-7315-b010-924ed0afbe87",
"event": "project.deleted",
"timestamp": 1775116884929,
"workspace_id": "01986573-8d04-72fc-85b3-573c77a18511",
"data": {
"id": "019d4d2e-8af7-7609-8844-012c89671da9"
}
}