jobtypes_update
Update job types in ServiceTitan by modifying ID, tenant, name, skills, priority, duration, and other parameters to align with business requirements.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | ||
businessUnitIds | No | ||
class | No | ||
duration | No | ||
enforceRecurringServiceEventSelection | No | ||
externalData | No | ||
id | Yes | Format - int64. | |
invoiceSignaturesRequired | No | ||
name | No | ||
noCharge | No | ||
priority | No | ||
skills | No | ||
soldThreshold | No | ||
summary | No | ||
tagTypeIds | No | ||
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"active": {
"type": "boolean"
},
"businessUnitIds": {
"items": {
"type": "integer"
},
"type": "array"
},
"class": {
"type": "string"
},
"duration": {
"type": "number"
},
"enforceRecurringServiceEventSelection": {
"type": "boolean"
},
"externalData": {
"items": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
},
"type": "array"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"invoiceSignaturesRequired": {
"type": "boolean"
},
"name": {
"type": "string"
},
"noCharge": {
"type": "boolean"
},
"priority": {
"type": "string"
},
"skills": {
"items": {
"type": "string"
},
"type": "array"
},
"soldThreshold": {
"type": "number"
},
"summary": {
"type": "string"
},
"tagTypeIds": {
"items": {
"type": "integer"
},
"type": "array"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}