create_task_chain
Build a sequence of dependent tasks within ClickUp by specifying task details and a list ID. Automatically links tasks as dependencies to streamline project workflows.
Instructions
Create a chain of dependent tasks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auto_link | No | Automatically link tasks as dependencies | |
list_id | Yes | List ID for the tasks | |
tasks | Yes | List of tasks to create in sequence |
Input Schema (JSON Schema)
{
"properties": {
"auto_link": {
"description": "Automatically link tasks as dependencies",
"type": "boolean"
},
"list_id": {
"description": "List ID for the tasks",
"type": "string"
},
"tasks": {
"description": "List of tasks to create in sequence",
"items": {
"properties": {
"description": {
"type": "string"
},
"time_estimate": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"tasks",
"list_id"
],
"type": "object"
}