asana_add_task_dependencies
Set task dependencies in Asana to define workflow sequences and ensure proper task order completion.
Instructions
Set dependencies for a task
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| dependencies | Yes | Array of task IDs that this task depends on | |
| task_id | Yes | The task ID to add dependencies to | 
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"
}