Get Flag Status for a Specific Post
This endpoint retrieves, if exists, a flag for this contribute created by the user logged
info
This operation requires authentication.
HTTP Request
GET /api/v2/post/{id}/flag/status/
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | A unique integer value identifying this post |
Example Request
- JavaScript
- Bash
const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/post/{id}/flag/status/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X GET /api/v2/post/{id}/flag/status/ \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Response status code | Flag |
Example responses
- 200
{
"added_at": "string",
"flag_type": "integer",
"flag_type_description": "string"
}