Create Section
asana_create_sectionAdd a new section to any Asana project for task organization. Define the section name and optionally set its position relative to existing sections.
Instructions
Create a new section in a project. Sections appear as column headers in board view or group headers in list view. Returns the created section object with gid and name. Use insert_before or insert_after to control placement.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the new section. | |
| opt_fields | No | Comma-separated fields to include in the response. Useful values: `gid,name,created_at`. | |
| project_gid | Yes | The GID of the project to add the section to (numeric string, e.g. `'1234567890123'`). | |
| insert_after | No | GID of an existing section to insert the new section after. Cannot be used with insert_before. | |
| insert_before | No | GID of an existing section to insert the new section before. Cannot be used with insert_after. |