notes_update_comment
Revise the text of a specific comment on a Pipedrive note by providing the note ID and comment UUID.
Instructions
Update an existing comment on a note.
Modifies the content of a specific comment on a note.
Workflow tips:
Both note id and comment_id are required
comment_id is a UUID, not a number
Only the content can be updated
Use notes_list_comments to find the comment_id
Common use cases:
Fix typos: { "id": 123, "comment_id": "uuid-here", "content": "Corrected text" }
Add details: { "id": 456, "comment_id": "uuid-here", "content": "Updated with more info" }
Clarify response: { "id": 789, "comment_id": "uuid-here", "content": "Revised answer" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the note (required) | |
| comment_id | Yes | UUID of the comment to update (required) | |
| content | Yes | New content of the comment (required) |