appointments_get
Retrieve specific appointment details from ServiceTitan using the appointment ID and tenant ID for streamlined scheduling and management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"id": {
"description": "The appointment ID (int64)",
"type": "integer"
},
"tenant": {
"description": "The tenant ID (int64)",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}