Get Tasks For Project
asana_get_tasks_for_projectList all direct tasks in an Asana project, excluding subtasks, across all sections. Supports pagination and filtering by completion date.
Instructions
List all tasks in a project (direct members only, not subtasks). Returns tasks across all sections. For tasks in a specific section use asana_get_tasks_for_section. Returns minimal fields by default — use opt_fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Results per page (1-100). | |
| offset | No | Pagination offset token from a previous response's next_page.offset. | |
| opt_fields | No | Comma-separated fields to include. Recommended: `gid,name,completed,due_on,assignee.name,notes,memberships.section.name,resource_subtype`. Default fields: gid, name. | |
| project_gid | Yes | The GID of the project (numeric string, e.g. `'19234567890123'`). Get it from asana_search_projects. | |
| completed_since | No | Only return tasks completed on or after this time. ISO 8601 datetime string or the literal string `'now'` to get only incomplete tasks. |