asana_add_task_to_section
Add tasks to specific sections within Asana projects to organize work and maintain project structure.
Instructions
Add a task to a specific section in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| section_id | Yes | The section ID to add the task to | |
| task_id | Yes | The task ID to add to the section | |
| 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"
},
"section_id": {
"description": "The section ID to add the task to",
"type": "string"
},
"task_id": {
"description": "The task ID to add to the section",
"type": "string"
}
},
"required": [
"section_id",
"task_id"
],
"type": "object"
}