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.
Unique identifier for this delivery. Use this to deduplicate events.
The event type that triggered the webhook (e.g., job_type.created).
Unix timestamp (milliseconds) when the event was delivered.
The workspace where the event occurred.
The created job type. Unique identifier for the job type.
Icon identifier used in the dashboard (e.g., sun, wind, zap).
Whether this is a predefined system job type. Always false for custom job types.
Unix timestamp (milliseconds) when the job type was created.
Unix timestamp (milliseconds) when the job type was last updated.
The user or API key that created the 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"
}
}
}