contact_methods_get_contact_method
Retrieve specific contact method details, including email or phone, for a given contact ID and tenant using the ServiceTitan MCP Server API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | The contact UUID | |
contactMethodId | Yes | The contact method UUID | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactId": {
"description": "The contact UUID",
"format": "uuid",
"type": "string"
},
"contactMethodId": {
"description": "The contact method UUID",
"format": "uuid",
"type": "string"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"contactId",
"contactMethodId"
],
"type": "object"
}