Get Subtasks
asana_get_subtasksList direct subtasks of any Asana task by providing its GID. Returns one level deep; use recursion for nested subtasks and set opt_fields to include more details.
Instructions
List all direct subtasks of a task. Returns only one level deep — call recursively for nested subtasks. Returns minimal fields by default, use opt_fields for more.
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. | |
| task_gid | Yes | The GID of the parent task (numeric string, e.g. `'19234567890123'`). | |
| opt_fields | No | Comma-separated fields to include. Useful: `gid,name,completed,due_on,assignee.name`. Default fields: gid, name. |