Export_PayrollSettings
Export payroll settings from ServiceTitan by providing tenant ID and optional filters like continuation tokens or recent changes inclusion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Continuation token or date string | |
includeRecentChanges | No | Include 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 date string",
"type": [
"string",
"null"
]
},
"includeRecentChanges": {
"description": "Include recent changes quicker",
"type": [
"boolean",
"null"
]
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}