tasks_get_task
Retrieve specific task details, including optional subtasks, using task and tenant IDs with the ServiceTitan MCP Server integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. Task ID | |
includeSubtasks | No | Include Subtasks | |
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. Task ID",
"type": "integer"
},
"includeSubtasks": {
"anyOf": [
{
"anyOf": [
{
"not": {}
},
{
"type": "boolean"
}
]
},
{
"type": "null"
}
],
"description": "Include Subtasks"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}