jobs_create_note
Add customized notes to ServiceTitan job records by specifying job ID, tenant ID, and note text. Streamlines communication and updates in ServiceTitan workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. | |
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"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"text": {
"description": "Note text",
"type": "string"
}
},
"required": [
"id",
"tenant",
"text"
],
"type": "object"
}