asana_get_project_sections
Retrieve all sections within a specific Asana project to organize and categorize tasks effectively. Use this tool to access project structure and manage workflow sections.
Instructions
Get sections in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The project ID to get sections for | |
| opt_fields | No | Comma-separated list of optional fields to include |
Input Schema (JSON Schema)
{
"properties": {
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
},
"project_id": {
"description": "The project ID to get sections for",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}