Description
When attempting to create an Asana task directly in a specific section using the asana_create_task
tool with the section
parameter, the task is still being created in the “Untitled section” instead of the specified section.
Steps to Reproduce
- Retrieve section IDs using
asana_get_project_sections
- Try to create a task in a specific section using
asana_create_task
with thesection
parameter set to a valid section ID - Task is created but appears in “Untitled section” instead of the specified section
Expected Behavior
The task should be created directly in the specified section.
Actual Behavior
The task is created in the default “Untitled section” regardless of the specified section ID.
API Response
The API returns a successful response with the task created, but the memberships
field shows it in the “Untitled section”:
"memberships": [
{
"project": {
"gid": "1209811434790214",
"resource_type": "project",
"name": "Roman"
},
"section": {
"gid": "1209811434790215",
"resource_type": "section",
"name": "Untitled section"
}
}
]
Possible Solutions
- Investigate if there’s a separate API call needed to move a task to a section after creation
- Check if the section parameter expects a different format or additional parameters
- Look for alternative ways to specify the section during task creation
Additional Context
This issue affects workflow automation where tasks need to be created directly in the correct section.