appointments_reschedule
Reschedule appointments in ServiceTitan by specifying the appointment and tenant IDs. Integrates with the MCP server for API interactions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Request body (optional) | |
id | Yes | The appointment ID (int64) | |
tenant | Yes | The tenant ID (int64) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"description": "Request body (optional)",
"properties": {},
"type": "object"
},
"id": {
"description": "The appointment ID (int64)",
"type": "integer"
},
"tenant": {
"description": "The tenant ID (int64)",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}