clickup_checklist_update_item
Modify checklist items on ClickUp tasks by renaming, toggling completion status, or reassigning to users. Update specific items within task checklists to track progress and manage responsibilities.
Instructions
Modify a single checklist item on a ClickUp task — rename it, toggle its resolved state, or change its assignee. Use clickup_checklist_add_item to create new items and clickup_checklist_delete_item to remove them. Returns the updated checklist object (all items).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignee | No | Reassign the item to this user ID. Obtain user IDs from clickup_member_list or clickup_user_get. Pass no value to leave assignee unchanged. | |
| checklist_id | Yes | ID of the parent checklist. Obtain from clickup_task_get (field: checklists[].id). | |
| item_id | Yes | ID of the item to update. Obtain from clickup_task_get (field: checklists[].items[].id). | |
| name | No | New text for the item. Omit to keep current text. | |
| resolved | No | true = mark as done (strike-through); false = mark as open. |