locations_create_note
Create and pin notes for specific locations in ServiceTitan, using tenant ID and custom text, to enhance organizational communication and record-keeping.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. | |
isPinned | No | Whether the note should be pinned. Defaults to false. | |
tenant | Yes | Format - int64. Tenant ID | |
text | Yes | The text of the note. |
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 should be pinned. Defaults to false.",
"type": "boolean"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"text": {
"description": "The text of the note.",
"type": "string"
}
},
"required": [
"id",
"tenant",
"text"
],
"type": "object"
}