tasks_create_subtask
Create and manage subtasks within ServiceTitan by specifying tenant and task details, enabling structured task breakdowns for efficient workflow management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. | |
payload | No | Subtask Details | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Format - int64.",
"type": "integer"
},
"payload": {
"additionalProperties": false,
"description": "Subtask Details",
"properties": {},
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"id"
],
"type": "object"
}