contact_methods_update_contact_method
Update existing contact methods in ServiceTitan by specifying the contact ID, contact method ID, tenant, and new values or memos. Facilitates accurate customer communication management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | Format - guid. | |
contactMethodId | Yes | Format - guid. | |
payload | No | ||
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactId": {
"description": "Format - guid.",
"format": "uuid",
"type": "string"
},
"contactMethodId": {
"description": "Format - guid.",
"format": "uuid",
"type": "string"
},
"payload": {
"additionalProperties": false,
"properties": {
"memo": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"contactId",
"contactMethodId",
"tenant"
],
"type": "object"
}