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.
Removes a previously added downvote from a comment by the authenticated user. Subtracts the user’s ID from the downvotes array. Increases the reputation of the comment’s author.
Path Parameters
The ID of the comment to un-downvote
Response
Returns the updated comment with the downvote removed.
Unique comment identifier
ID of the entity this comment belongs to
Array of user IDs who upvoted
Updated array of user IDs who downvoted (current user removed)
Error Responses
Missing Comment ID - 400 Bad Request
Not Found - 404 Not Found
{
"error" : "Comment not found" ,
"code" : "comment/not-found"
}
Not Downvoted - 409 Conflict
{
"error" : "User hasn't downvoted this comment" ,
"code" : "comment/not-downvoted"
}
Server Error - 500 Internal Server Error
{
"error" : "Internal server error." ,
"code" : "comment/server-error" ,
"details" : "[error message]"
}
Notes
The authenticated user must have previously downvoted the comment.
A successful request removes the user’s ID from downvotes.
The comment author’s reputation is increased.
A 409 Conflict is returned if the user hasn’t downvoted the comment.