contacts_create
Create and manage contacts in ServiceTitan by defining tenant details, contact IDs, names, titles, and archiving status for streamlined CRM integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
createdBy | No | Created By | |
createdOn | No | Created On | |
id | No | Contact ID | |
isArchived | No | Is Archived | |
modifiedBy | No | Modified By | |
modifiedOn | No | Modified On | |
name | No | Contact Name | |
referenceId | No | Reference ID | |
tenant | Yes | Format - int64. Tenant ID | |
title | No | Contact Title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"createdBy": {
"description": "Created By",
"type": "integer"
},
"createdOn": {
"description": "Created On",
"format": "date-time",
"type": "string"
},
"id": {
"description": "Contact ID",
"format": "uuid",
"type": "string"
},
"isArchived": {
"description": "Is Archived",
"type": "boolean"
},
"modifiedBy": {
"description": "Modified By",
"type": "integer"
},
"modifiedOn": {
"description": "Modified On",
"format": "date-time",
"type": "string"
},
"name": {
"description": "Contact Name",
"type": "string"
},
"referenceId": {
"description": "Reference ID",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"title": {
"description": "Contact Title",
"type": "string"
}
},
"required": [
"tenant"
],
"type": "object"
}