arrival_windows_update
Update arrival windows in ServiceTitan to adjust start times, durations, and business unit assignments for efficient scheduling.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | ||
businessUnitIds | No | ||
duration | No | ||
id | Yes | Format - int64. | |
start | No | ||
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"active": {
"type": "boolean"
},
"businessUnitIds": {
"items": {
"type": "integer"
},
"type": "array"
},
"duration": {
"type": "string"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"start": {
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}