bookings_get_for_provider
Retrieve specific booking details for a provider in ServiceTitan by providing tenant, booking provider, and ID for API integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
booking_provider | Yes | Format - int64. | |
id | Yes | Format - int64. | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"booking_provider": {
"description": "Format - int64.",
"type": "integer"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"booking_provider",
"id"
],
"type": "object"
}