leads_create_note
Add and manage notes for leads in ServiceTitan, enabling organization and prioritization with options to pin important updates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. | |
isPinned | No | Whether the note is pinned | |
tenant | Yes | Format - int64. Tenant ID | |
text | Yes | Note text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"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": "Note text",
"type": "string"
}
},
"required": [
"id",
"tenant",
"text"
],
"type": "object"
}