Skip to content

Edit Document Comment

Edit the text of an existing comment on a document. Requires the DOCUMENTS feature flag and ADMIN, EDIT_COMMENT, UPDATE_DOCUMENT, or MANAGE_DOCUMENTS permissions.

Parameters

name * are required parametersdata typedescription
documentId*stringThe unique identifier of the document
commentId*stringThe unique identifier of the comment to edit
body.text*stringThe updated comment text

Return Value

The updated comment record.

Examples

bash
curl -X POST "https://app.wombat.software/api/{targetPath}/document/:documentId/comment/:commentId" \
  -H "Content-Type: application/json" \
  -H "Authentication: Bearer ..." \
  -d '{"text": "Updated feedback."}'

ENDPOINTS

post/api/{targetPath}/document/:documentId/comment/:commentId