export_calls
Retrieve call data from ServiceTitan API by specifying tenant ID, continuation token, or recent changes flag for efficient data export and integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Continuation token or custom date string | |
includeRecentChanges | No | Use true to receive recent changes quicker | |
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",
"null"
]
},
"includeRecentChanges": {
"description": "Use true to receive recent changes quicker",
"type": [
"boolean",
"null"
]
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}