Skip to main content

Hide a Specific Post

This endpoint hides the Post for the logged user. The post must be in show state

info

This operation requires authentication.

HTTP Request

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

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this post

Example Request


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

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

Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone