Skip to main content
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.
delivery_id
string
Unique identifier for this delivery. Use this to deduplicate events.
event
string
The event type that triggered the webhook (e.g., job.deleted).
timestamp
number
Unix timestamp (milliseconds) when the event was delivered.
workspace_id
string
The workspace where the event occurred.
data
object
Contains only the ID of the deleted job.
{
  "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"
  }
}