asana_create_section_for_project
Create a new section in an Asana project to organize tasks and improve workflow management. Specify the project ID and section name to add structured categories.
Instructions
Create a new section in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The project ID to create the section in | |
| name | Yes | Name of the section to create | |
| opt_fields | No | Comma-separated list of optional fields to include |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the section to create",
"type": "string"
},
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
},
"project_id": {
"description": "The project ID to create the section in",
"type": "string"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}