> ## Documentation Index
> Fetch the complete documentation index at: https://dronebundle.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# project.deleted

> Received when a project is deleted.

Event triggered when a project is permanently deleted from your workspace, either through the dashboard or via the API.

<Warning>
  Project deletion is irreversible. All related data including jobs, files, and client access records are also removed.
</Warning>

## Response Body Parameters

All webhook payloads follow a consistent top-level structure with event-specific data nested within the `data` object.

<ResponseField name="delivery_id" type="string">
  Unique identifier for this delivery. Use this to deduplicate events.
</ResponseField>

<ResponseField name="event" type="string">
  The event type that triggered the webhook (e.g., `project.deleted`).
</ResponseField>

<ResponseField name="timestamp" type="number">
  Unix timestamp (milliseconds) when the event was delivered.
</ResponseField>

<ResponseField name="workspace_id" type="string">
  The workspace where the event occurred.
</ResponseField>

<ResponseField name="data" type="object">
  Contains only the ID of the deleted project.

  <Expandable title="properties">
    <ResponseField name="id" type="string">
      Unique identifier of the deleted project.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Example Payload theme={null}
  {
    "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"
    }
  }
  ```
</ResponseExample>
