Create Subtask
asana_create_subtaskCreate a subtask under an existing Asana task to break down larger work into manageable pieces. Specify parent task, name, and optional assignee, due date, and notes.
Instructions
Create a subtask under an existing task. Subtasks are tasks with a parent. Returns the created subtask object. Use asana_get_subtasks to list existing subtasks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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) | |
| html_notes | No | HTML-like formatted description of the subtask. Does not support ALL HTML tags. Only a subset. The only allowed TAG in the HTML are: <body> <h1> <h2> <ol> <ul> <li> <strong> <em> <u> <s> <code> <pre> <blockquote> <a data-asana-type="" data-asana-gid=""> <hr> <img> <table> <tr> <td>. No other tags are allowed. Use the to create a newline. Do not use after <body>. Example: <body><h1>Motivation</h1> A customer called in to complain <h1>Goal</h1> Fix the problem</body> | |
| opt_fields | No | Comma-separated list of optional fields to include | |
| parent_task_id | Yes | The GID of the parent task (numeric string, e.g. `'19234567890123'`). |