contact_methods_DeleteContactMethod
Deletes a specified contact method for a given contact in ServiceTitan by providing the contact ID, contact method ID, and tenant ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | Format - guid. | |
contactMethodId | Yes | Format - guid. | |
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"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"contactId",
"contactMethodId",
"tenant"
],
"type": "object"
}