bulk_update_tasks
Efficiently update multiple tasks simultaneously in ClickUp by modifying status, priority, assignees, or other fields using a single operation.
Instructions
Update multiple tasks at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_ids | Yes | List of task IDs to update | |
updates | Yes | Updates to apply (status, priority, assignees, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"task_ids": {
"description": "List of task IDs to update",
"items": {
"type": "string"
},
"type": "array"
},
"updates": {
"description": "Updates to apply (status, priority, assignees, etc.)",
"type": "object"
}
},
"required": [
"task_ids",
"updates"
],
"type": "object"
}