export_equipment
Export equipment data from ServiceTitan API by specifying tenant ID, with options to include recent changes and use continuation tokens for large datasets.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Continuation token or date string | |
includeRecentChanges | No | Include recent changes | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Continuation token or date string",
"type": [
"string",
"null"
]
},
"includeRecentChanges": {
"description": "Include recent changes",
"type": [
"boolean",
"null"
]
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}