contact_methods_create_contact_method
Add a new contact method for a specific contact in ServiceTitan, including type, value, and optional memo, using tenant ID and contact UUID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | The contact UUID | |
memo | No | The description of contact method | |
tenant | Yes | Tenant ID | |
type | Yes | The type of contact method | |
value | Yes | The value of contact method |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactId": {
"description": "The contact UUID",
"format": "uuid",
"type": "string"
},
"memo": {
"description": "The description of contact method",
"type": "string"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
},
"type": {
"description": "The type of contact method",
"type": "string"
},
"value": {
"description": "The value of contact method",
"type": "string"
}
},
"required": [
"tenant",
"contactId",
"type",
"value"
],
"type": "object"
}