jobs_get_cancel_reasons
Retrieve cancellation reasons for specific jobs in ServiceTitan by providing tenant ID and job IDs, enabling efficient workflow analysis and resolution.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | Perform lookup by multiple IDs (maximum 50) | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "Perform lookup by multiple IDs (maximum 50)",
"type": [
"string",
"null"
]
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"ids"
],
"type": "object"
}