Add Task To Section
asana_add_task_to_sectionMove a task into a specific project section, optionally positioning it before or after another task.
Instructions
Move a task into a specific section within a project. The task is placed at the top of the section unless insert_before or insert_after is specified. Returns a success message. Prefer using the memberships parameter in asana_create_task to place tasks in sections at creation time.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_gid | Yes | The GID of the task to move into the section (numeric string, e.g. `'1234567890123'`). | |
| section_gid | Yes | The GID of the destination section (numeric string, e.g. `'1234567890123'`). Get section GIDs from asana_get_project_sections. | |
| insert_after | No | GID of a task already in the section to insert this task after. | |
| insert_before | No | GID of a task already in the section to insert this task before. |