locations_createcontact
Create and manage contacts in ServiceTitan by specifying contact type, value, and related details, ensuring accurate communication and record-keeping for locations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doNotText | No | Do not text flag for phone settings | |
id | Yes | Format - int64. | |
memo | No | Contact memo | |
phoneNumber | No | Phone number for phone settings | |
tenant | Yes | Format - int64. Tenant ID | |
type | Yes | Contact type | |
value | Yes | Contact value |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"doNotText": {
"description": "Do not text flag for phone settings",
"type": "boolean"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"memo": {
"description": "Contact memo",
"type": "string"
},
"phoneNumber": {
"description": "Phone number for phone settings",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"type": {
"description": "Contact type",
"type": "string"
},
"value": {
"description": "Contact value",
"type": "string"
}
},
"required": [
"id",
"tenant",
"type",
"value"
],
"type": "object"
}