customers_createcontact
Add or update customer contact details in ServiceTitan, including phone settings, type, value, and memo, to maintain accurate and organized client records.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. | |
memo | No | Contact Memo | |
phoneSettings | No | Phone Settings | |
tenant | Yes | Format - int64. Tenant ID | |
type | No | Contact Type | |
value | No | Contact Value |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Format - int64.",
"type": "integer"
},
"memo": {
"description": "Contact Memo",
"type": "string"
},
"phoneSettings": {
"additionalProperties": false,
"description": "Phone Settings",
"properties": {
"doNotText": {
"description": "Do Not Text",
"type": "boolean"
},
"phoneNumber": {
"description": "Phone Number",
"type": "string"
}
},
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"type": {
"description": "Contact Type",
"type": "string"
},
"value": {
"description": "Contact Value",
"type": "string"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}