Skip to main content
Event triggered when a job is modified in your workspace, either through the dashboard or via the API. The payload contains the full job with all current values, not just the fields that changed.

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.updated).
timestamp
number
Unix timestamp (milliseconds) when the event was delivered.
workspace_id
string
The workspace where the event occurred.
data
object
The updated job.
{
  "delivery_id": "019d4d48-f0aa-72a7-860f-f7622e52c694",
  "event": "job.updated",
  "timestamp": 1775118119082,
  "workspace_id": "01986573-8d04-72fc-85b3-573c77a18511",
  "data": {
    "id": "019d4d43-c48f-77c7-a7db-1d76a33f2f90",
    "name": "Turbine 12 - Blade Inspection",
    "description": "Inspection in progress. Blade 1 complete, moving to Blade 2.",
    "type": "drone_inspection",
    "status": "in_progress",
    "priority": "high",
    "job_pattern": "one_time",
    "project_id": "019d4d3b-ad23-76a7-82fc-3199bd390134",
    "start_date": "2026-05-08T00:00:00.000Z",
    "end_date": null,
    "latitude": 57.7102,
    "longitude": 11.9801,
    "address": "Kruthusgatan 19, A, 411 04 Göteborg, Sweden",
    "what3words": "bottled.crusted.plans",
    "capture_types": ["drone_inspection", "thermal_inspection"],
    "inspection_notes": null,
    "external_id": "WT12-BLADE-Q2",
    "other_status_reason": null,
    "created": 1775117780533,
    "updated": 1775118119082,
    "created_by": {
      "type": "api_key",
      "id": "019d4d1c-eff1-730d-af97-b7271bb27c52"
    }
  }
}