export_invoice_items
Export invoice items from ServiceTitan API by specifying tenant ID, optional continuation token, or date range. Include recent changes for quicker updates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Continuation token from previous export or custom date string (e.g., '2020-01-01') | |
includeRecentChanges | No | Use 'true' for quicker recent changes (may cause duplicates) | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Continuation token from previous export or custom date string (e.g., '2020-01-01')",
"type": [
"string",
"null"
]
},
"includeRecentChanges": {
"description": "Use 'true' for quicker recent changes (may cause duplicates)",
"type": [
"boolean",
"null"
]
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}