asana_add_task_dependents
Set task dependencies in Asana by specifying which tasks depend on a particular task to establish clear workflow relationships and project sequencing.
Instructions
Set dependents for a task (tasks that depend on this task)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependents | Yes | Array of task IDs that depend on this task | |
task_id | Yes | The task ID to add dependents to |
Input Schema (JSON Schema)
{
"properties": {
"dependents": {
"description": "Array of task IDs that depend on this task",
"items": {
"type": "string"
},
"type": "array"
},
"task_id": {
"description": "The task ID to add dependents to",
"type": "string"
}
},
"required": [
"task_id",
"dependents"
],
"type": "object"
}