Edit Checklist Item
documentedRename, reassign, or mark a checklist item as resolved.
PUT /v2/checklist/{checklist_id}/checklist_item/{checklist_item_id}Task Checklistsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.clickup.com/api/v2/checklist/{{$checklist_id}}/checklist_item/{{$checklist_item_id}}" \
-X PUT \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: {{CLICKUP_API_KEY}}" \
-d '{"name": "{{$title}}", "assignee": "{{$assignee_id}}", "resolved": {{$resolved}}, "parent": "{{$parent_checklist_item_id}}"}'