Skip to main content
Event triggered when a job is created within a project, 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.created).
timestamp
number
Unix timestamp (milliseconds) when the event was delivered.
workspace_id
string
The workspace where the event occurred.
data
object
The created job.
{
  "delivery_id": "019d4d43-cbc6-709f-b5a9-67efd22b2482",
  "event": "job.created",
  "timestamp": 1775117781959,
  "workspace_id": "01986573-8d04-72fc-85b3-573c77a18511",
  "data": {
    "id": "019d4d43-c48f-77c7-a7db-1d76a33f2f90",
    "name": "Turbine 12 - Blade Inspection",
    "description": "Close-range visual and thermal inspection of all three blades on Turbine 12.",
    "type": "drone_inspection",
    "status": "not_started",
    "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": 1775117780533,
    "created_by": {
      "type": "api_key",
      "id": "019d4d1c-eff1-730d-af97-b7271bb27c52"
    }
  }
}