locations_delete_contact
Remove a specific contact from a location in ServiceTitan using the tenant ID, location ID, and contact ID for accurate and targeted deletion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | Format - int64. | |
id | Yes | Format - int64. | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactId": {
"description": "Format - int64.",
"type": "integer"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"contactId",
"tenant"
],
"type": "object"
}