bookings_create_contact
Create or add contact details for bookings in ServiceTitan by specifying tenant ID, provider, type, and value to enhance communication and record management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
booking_provider | Yes | Format - int64. | |
id | Yes | Format - int64. | |
memo | No | Contact memo | |
tenant | Yes | Format - int64. Tenant ID | |
type | Yes | Contact type | |
value | Yes | Contact value |
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"
},
"memo": {
"description": "Contact memo",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"type": {
"description": "Contact type",
"type": "string"
},
"value": {
"description": "Contact value",
"type": "string"
}
},
"required": [
"tenant",
"booking_provider",
"id",
"type",
"value"
],
"type": "object"
}