export_job_cancel_reasons
Extract and manage job cancellation reasons from ServiceTitan for a specified tenant, ensuring efficient tracking and analysis of cancellation data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Continuation token or custom date string | |
includeRecentChanges | No | Include recent changes quickly | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Continuation token or custom date string",
"type": "string"
},
"includeRecentChanges": {
"description": "Include recent changes quickly",
"type": "boolean"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}