clickup_edit_checklist_item
Edit a ClickUp checklist item by renaming, marking complete, reassigning, or nesting it under another item.
Instructions
Rename, (un)resolve, reassign, or nest/un-nest a checklist item.
Nesting: pass parent (another item's checklist_item_id) to indent this
item under it; pass clear_parent=True to move it back to the top level.
When to Use:
Checking off progress (
resolved=True), reassigning, or building a nested checklist structure.
When NOT to Use:
To remove the item entirely, use
clickup_delete_checklist_item.
Returns: A confirmation string describing the applied changes.
Examples: params = {"checklist_id": "b8a8...", "checklist_item_id": "9f1...", "resolved": True} params = {"checklist_id": "b8a8...", "checklist_item_id": "9f1...", "parent": "aa2..."} params = {"checklist_id": "b8a8...", "checklist_item_id": "9f1...", "clear_assignee": True}
Error Handling: 404 means the checklist_id or checklist_item_id does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |