curl --request PATCH \
--url https://api.replyke.com/api/v6/:projectId/api/v7/comments/:commentId \
--header 'Content-Type: application/json' \
--data '
{
"content": "<string>"
}
'Edit a comment’s text content
curl --request PATCH \
--url https://api.replyke.com/api/v6/:projectId/api/v7/comments/:commentId \
--header 'Content-Type: application/json' \
--data '
{
"content": "<string>"
}
'Not Found — 404
{ "error": "Comment not found", "code": "comment/not-found" }
Forbidden — 403
{ "error": "You do not have permission to update this comment.", "code": "comment/forbidden" }