Skip to main content

Upvote for a Specific Comment

This endpoint allows to vote (with a relative reaction) a specific comment.

info

This operation requires authentication

HTTP Request

POST /api/v2/comment/{id}/vote/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this comment
reactionquerystringfalseA unique integer value identifying the reaction (default is 1)
info

If a different reaction id than the one made previously by the user is passed, the reaction is updated to the new one.

Example Request

const inputBody = '{}';
const headers = {
'Content-Type':'application/json',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/comment/{id}/vote/?reaction=1',
{
method: 'POST',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});


Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone