leads_create_follow_up
Schedule and organize follow-up tasks for leads by setting dates, adding notes, and pinning priorities directly within the ServiceTitan API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
followUpDate | Yes | Follow up date | |
id | Yes | Format - int64. | |
pinToTop | Yes | Pin to top | |
tenant | Yes | Format - int64. Tenant ID | |
text | Yes | Follow up text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"followUpDate": {
"description": "Follow up date",
"type": "string"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"pinToTop": {
"description": "Pin to top",
"type": "boolean"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"text": {
"description": "Follow up text",
"type": "string"
}
},
"required": [
"id",
"tenant",
"followUpDate",
"text",
"pinToTop"
],
"type": "object"
}