clickup_update_comment
Edit a comment's text, reassign it, or mark it resolved or unresolved to manage feedback and action items.
Instructions
Edit a comment's text, (re)assign it, or toggle its resolved state.
Calls PUT /comment/{comment_id}. Works uniformly on task, List, Chat-view,
and threaded-reply comments — they all share the same comment_id space.
When to Use:
To fix a typo, add detail, reassign a comment's action item, or mark it resolved once addressed.
When NOT to Use:
To remove a comment entirely — use
clickup_delete_comment.To reply within a thread rather than editing — use
clickup_create_threaded_comment.
Returns:
A confirmation string naming the updated comment, or an Error ... string
on failure.
Examples: params = {"comment_id": "446750", "comment_text": "Resolved — see PR #42.", "resolved": True}
Error Handling: 404 means the comment id is wrong; 403 can mean you don't own the comment and lack edit permission.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |