asana_add_task_dependencies
Set task dependencies in Asana by linking tasks that must be completed before others can begin, ensuring proper workflow sequencing and project management.
Instructions
Set dependencies for a task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The task ID to add dependencies to | |
| dependencies | Yes | Array of task IDs that this task depends on |
Input Schema (JSON Schema)
{
"properties": {
"dependencies": {
"description": "Array of task IDs that this task depends on",
"items": {
"type": "string"
},
"type": "array"
},
"task_id": {
"description": "The task ID to add dependencies to",
"type": "string"
}
},
"required": [
"task_id",
"dependencies"
],
"type": "object"
}