JobTypes_Create
Create and configure job types in ServiceTitan by specifying tenant ID, name, business units, skills, priorities, and other essential parameters to streamline job management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | Whether the job type is active | |
businessUnitIds | Yes | List of business unit IDs | |
class | Yes | Class of the job type | |
duration | Yes | Duration of the job type | |
enforceRecurringServiceEventSelection | Yes | Whether to enforce recurring service event selection | |
externalData | No | External data for the job type | |
invoiceSignaturesRequired | Yes | Whether invoice signatures are required | |
name | Yes | Name of the job type | |
noCharge | Yes | Whether the job type is no charge | |
priority | Yes | Priority of the job type | |
skills | Yes | List of skills | |
soldThreshold | Yes | Sold threshold | |
summary | Yes | Summary of the job type | |
tagTypeIds | Yes | List of tag type IDs | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"active": {
"description": "Whether the job type is active",
"type": "boolean"
},
"businessUnitIds": {
"description": "List of business unit IDs",
"items": {
"type": "integer"
},
"type": "array"
},
"class": {
"description": "Class of the job type",
"type": "string"
},
"duration": {
"description": "Duration of the job type",
"type": "number"
},
"enforceRecurringServiceEventSelection": {
"description": "Whether to enforce recurring service event selection",
"type": "boolean"
},
"externalData": {
"description": "External data for the job type",
"items": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
},
"type": "array"
},
"invoiceSignaturesRequired": {
"description": "Whether invoice signatures are required",
"type": "boolean"
},
"name": {
"description": "Name of the job type",
"type": "string"
},
"noCharge": {
"description": "Whether the job type is no charge",
"type": "boolean"
},
"priority": {
"description": "Priority of the job type",
"type": "string"
},
"skills": {
"description": "List of skills",
"items": {
"type": "string"
},
"type": "array"
},
"soldThreshold": {
"description": "Sold threshold",
"type": "number"
},
"summary": {
"description": "Summary of the job type",
"type": "string"
},
"tagTypeIds": {
"description": "List of tag type IDs",
"items": {
"type": "integer"
},
"type": "array"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"name",
"businessUnitIds",
"skills",
"tagTypeIds",
"priority",
"duration",
"soldThreshold",
"class",
"summary",
"noCharge",
"enforceRecurringServiceEventSelection",
"invoiceSignaturesRequired"
],
"type": "object"
}