bookings_create
Create new bookings in ServiceTitan by specifying tenant ID, booking provider, and request body via the ServiceTitan MCP Server API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Request body | |
booking_provider | Yes | Format - int64. | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": {},
"description": "Request body",
"type": "object"
},
"booking_provider": {
"description": "Format - int64.",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"booking_provider",
"tenant",
"body"
],
"type": "object"
}