Skip to main content

Remove an upvote for a Specific Post

This endpoint removes a vote/reaction for 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 you want to remove (default is 1)
info

To remove a reaction it is necessary to pass the id of the reaction made previously by the user.

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/',
{
method: 'POST',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});


Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone