bulk_move_tasks
Transfer multiple tasks to a different list in ClickUp by specifying task IDs and the target list ID. Simplify task organization and streamline project management workflows.
Instructions
Move multiple tasks to a different list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
target_list_id | Yes | Target list ID | |
task_ids | Yes | List of task IDs to move |
Input Schema (JSON Schema)
{
"properties": {
"target_list_id": {
"description": "Target list ID",
"type": "string"
},
"task_ids": {
"description": "List of task IDs to move",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"task_ids",
"target_list_id"
],
"type": "object"
}