bookings_updatebookingcontact
Update booking contact details in ServiceTitan by specifying tenant ID, booking provider, contact ID, type, and value to ensure accurate client communication.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
booking_provider | Yes | Format - int64. | |
contactId | Yes | Format - int64. | |
id | Yes | Format - int64. | |
memo | No | Optional memo for the contact | |
tenant | Yes | Format - int64. Tenant ID | |
type | Yes | Contact type (e.g., Phone) | |
value | Yes | Contact value (e.g., phone number) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"booking_provider": {
"description": "Format - int64.",
"type": "integer"
},
"contactId": {
"description": "Format - int64.",
"type": "integer"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"memo": {
"description": "Optional memo for the contact",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"type": {
"description": "Contact type (e.g., Phone)",
"type": "string"
},
"value": {
"description": "Contact value (e.g., phone number)",
"type": "string"
}
},
"required": [
"tenant",
"booking_provider",
"id",
"contactId",
"type",
"value"
],
"type": "object"
}