asana_reorder_sections
Change the position of sections within Asana projects by moving them before or after other sections to organize project structure.
Instructions
Reorder a section within a project by specifying its position relative to another section
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The project ID containing the sections to reorder | |
| section_id | Yes | The section GID to reorder | |
| before_section_id | No | Insert the section before this section GID. Use null for first position. | |
| after_section_id | No | Insert the section after this section GID. Use null for last position. |
Input Schema (JSON Schema)
{
"properties": {
"after_section_id": {
"description": "Insert the section after this section GID. Use null for last position.",
"type": "string"
},
"before_section_id": {
"description": "Insert the section before this section GID. Use null for first position.",
"type": "string"
},
"project_id": {
"description": "The project ID containing the sections to reorder",
"type": "string"
},
"section_id": {
"description": "The section GID to reorder",
"type": "string"
}
},
"required": [
"project_id",
"section_id"
],
"type": "object"
}