asana_get_subtasks_for_task
Retrieve subtasks for any Asana task to track progress and manage dependencies. View subtask details including names, assignees, due dates, and completion status.
Instructions
Get the list of subtasks for a specific task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ID of the task to get subtasks for | |
| opt_fields | No | Optional fields for subtasks (e.g. 'name,notes,assignee,due_on,completed') | |
| limit | No | Maximum number of results per page (1-100) | |
| offset | No | Pagination token from previous response | |
| auto_paginate | No | If true, automatically gets all pages and combines results |
Input Schema (JSON Schema)
{
"properties": {
"auto_paginate": {
"default": false,
"description": "If true, automatically gets all pages and combines results",
"type": "boolean"
},
"limit": {
"description": "Maximum number of results per page (1-100)",
"type": "number"
},
"offset": {
"description": "Pagination token from previous response",
"type": "string"
},
"opt_fields": {
"description": "Optional fields for subtasks (e.g. 'name,notes,assignee,due_on,completed')",
"type": "string"
},
"task_id": {
"description": "ID of the task to get subtasks for",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}