> ## 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.

# job.deleted

> Received when a job is deleted.

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

## 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., `job.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 job.

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

<ResponseExample>
  ```json Example Payload theme={null}
  {
    "delivery_id": "019d4d4c-0f72-764b-918e-22fa08f31b06",
    "event": "job.deleted",
    "timestamp": 1775118323570,
    "workspace_id": "01986573-8d04-72fc-85b3-573c77a18511",
    "data": {
      "id": "019d4d43-c48f-77c7-a7db-1d76a33f2f90"
    }
  }
  ```
</ResponseExample>
