asana_get_tasks_for_project
Retrieve all tasks from a specific Asana project with pagination support, filtering options for completed/incomplete tasks, and customizable result limits.
Instructions
Get all tasks from a specific project with pagination support
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The project ID to get tasks for | |
| completed | No | Filter for completed or incomplete tasks | |
| limit | No | Maximum number of results to return (1-100) | |
| offset | No | Pagination token from previous response | |
| auto_paginate | No | Automatically fetch all pages of results (up to max_pages) | |
| max_pages | No | Maximum number of pages to fetch when auto_paginate is true | |
| opt_fields | No | Comma-separated list of optional fields to include |
Input Schema (JSON Schema)
{
"properties": {
"auto_paginate": {
"default": false,
"description": "Automatically fetch all pages of results (up to max_pages)",
"type": "boolean"
},
"completed": {
"description": "Filter for completed or incomplete tasks",
"type": "boolean"
},
"limit": {
"description": "Maximum number of results to return (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"max_pages": {
"default": 10,
"description": "Maximum number of pages to fetch when auto_paginate is true",
"type": "number"
},
"offset": {
"description": "Pagination token from previous response",
"type": "string"
},
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
},
"project_id": {
"description": "The project ID to get tasks for",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}