Skip to main content

Upvote for a Specific Post

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

info

This operation requires authentication.

HTTP Request

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

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this post.
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 headers = {
'Content-Type':'application/json',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

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


Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone