customers_create_note
Add detailed notes to customer profiles in ServiceTitan, including text, pinned status, and creator ID, to streamline client communication and record-keeping.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
createdById | No | The ID of the user who created the note | |
id | Yes | Format - int64. | |
isPinned | No | Whether the note is pinned | |
tenant | Yes | Format - int64. Tenant ID | |
text | Yes | The note text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"createdById": {
"description": "The ID of the user who created the note",
"type": "integer"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"isPinned": {
"description": "Whether the note is pinned",
"type": "boolean"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"text": {
"description": "The note text",
"type": "string"
}
},
"required": [
"id",
"tenant",
"text"
],
"type": "object"
}