Skip to main content

Get Hide Status for a Specific Post

This endpoint retrieves if the logged user has hidden the Post

info

This operation requires authentication.

HTTP Request

GET /api/v2/post/{id}/hide/status/

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

Responses

StatusMeaningDescriptionSchema
200OKResponse status codenone

Example responses

{
"hidden": "boolean"
}