Documentation Index
Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
Use this file to discover all available pages before exploring further.
Updates the content of an existing comment. Only the original author or a master client may perform this operation.
Path Parameters
The ID of the comment to update
Body Parameters
The updated comment content
Response
Returns the updated comment object.
Unique comment identifier
ID of the entity this comment belongs to
Last update timestamp in ISO 8601 format
Error Responses
Missing Data - 400 Bad Request
{
"error": "Missing required data",
"code": "comment/invalid-request"
}
Forbidden - 403 Forbidden
{
"error": "You do not have permission to update this comment.",
"code": "comment/forbidden"
}
Not Found - 404 Not Found
{
"error": "Comment not found",
"code": "comment/not-found"
}
Server Error - 500 Internal Server Error
{
"error": "Internal server error.",
"code": "comment/server-error",
"details": "[error message]"
}
Notes
- Only the author of the comment or a master client can update a comment.
- If the comment doesn’t exist or the user isn’t authorized, appropriate error responses are returned.