Appearance
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.
documentId
commentId
body.text
The updated comment record.
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."}'
/api/{targetPath}/document/:documentId/comment/:commentId
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
documentId*commentId*body.text*Return Value
The updated comment record.
Examples