add_task_dependency
Create a task dependency where one task waits for another to complete. Specify which task blocks or is blocked.
Instructions
Create a blocking dependency between tasks. Provide depends_on to make this task wait on another (this is blocked until that finishes), or dependency_of to make this task block another. Exactly one is required. Returns a confirmation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ID of the task the dependency is anchored on. | |
| depends_on | No | ID of the task that THIS task waits for (this task is blocked until that one completes). | |
| dependency_of | No | ID of the task that depends on THIS task (that task is blocked until this one completes). | |
| custom_task_ids | No | Set true when the task ids are custom task IDs instead of native ClickUp IDs. Requires `team_id`. | |
| team_id | No | Team/Workspace ID. Falls back to CLICKUP_TEAM_ID when omitted. |