getTaskSubtasks
Retrieve all subtasks for a specific task in Teamwork, including pagination options and the ability to include completed tasks.
Instructions
Get all subtasks for a specific task in Teamwork
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeCompletedTasks | No | Include completed tasks in the results | |
page | No | Page number for pagination | |
pageSize | No | Number of items per page | |
taskId | Yes | The ID of the task to get subtasks from |
Input Schema (JSON Schema)
{
"properties": {
"includeCompletedTasks": {
"description": "Include completed tasks in the results",
"type": "boolean"
},
"page": {
"description": "Page number for pagination",
"type": "integer"
},
"pageSize": {
"description": "Number of items per page",
"type": "integer"
},
"taskId": {
"description": "The ID of the task to get subtasks from",
"type": "integer"
}
},
"required": [
"taskId"
],
"type": "object"
}