Skip to main content
Event triggered when a custom job type is created in your workspace, either through the dashboard or via the API. Predefined job types (e.g., Wind Turbine, Cell Tower) do not trigger this event.

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_type.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 type.
{
  "delivery_id": "019d4d54-113d-7548-8e92-2b96ac076c64",
  "event": "job_type.created",
  "timestamp": 1775118848317,
  "workspace_id": "01986573-8d04-72fc-85b3-573c77a18511",
  "data": {
    "id": "019d4d54-0b41-7445-905c-7b21dc51cab9",
    "name": "Solar Panel Scan",
    "icon": "sun",
    "is_predefined": false,
    "created": 1775118846786,
    "updated": 1775118846786,
    "created_by": {
      "type": "api_key",
      "id": "019d4d1c-eff1-730d-af97-b7271bb27c52"
    }
  }
}