appointments_update_special_instructions
Update special instructions for specific appointments in ServiceTitan using tenant ID and appointment ID to ensure accurate service details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. | |
specialInstructions | Yes | Special instructions to update | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Format - int64.",
"type": "integer"
},
"specialInstructions": {
"description": "Special instructions to update",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant",
"specialInstructions"
],
"type": "object"
}