getTasksByTaskListId
Retrieve all tasks from a specific task list ID in Teamwork, with options for pagination and including completed tasks, using the Teamwork MCP server.
Instructions
Get all tasks from a specific task list 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 | |
tasklistId | Yes | The ID of the task list to get tasks 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"
},
"tasklistId": {
"description": "The ID of the task list to get tasks from",
"type": "integer"
}
},
"required": [
"tasklistId"
],
"type": "object"
}