asana_create_subtask
Create a new subtask for an existing Asana task to break down complex work into manageable steps, track progress, and organize project details effectively.
Instructions
Create a new subtask for an existing task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent_task_id | Yes | The parent task ID to create the subtask under | |
| name | Yes | Name of the subtask | |
| notes | No | Description of the subtask | |
| due_on | No | Due date in YYYY-MM-DD format | |
| assignee | No | Assignee (can be 'me' or a user ID) | |
| opt_fields | No | Comma-separated list of optional fields to include |
Input Schema (JSON Schema)
{
"properties": {
"assignee": {
"description": "Assignee (can be 'me' or a user ID)",
"type": "string"
},
"due_on": {
"description": "Due date in YYYY-MM-DD format",
"type": "string"
},
"name": {
"description": "Name of the subtask",
"type": "string"
},
"notes": {
"description": "Description of the subtask",
"type": "string"
},
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
},
"parent_task_id": {
"description": "The parent task ID to create the subtask under",
"type": "string"
}
},
"required": [
"parent_task_id",
"name"
],
"type": "object"
}