Flag a Specific Post
This endpoint flags a specific post
info
This operation requires authentication.
HTTP Request
POST /api/v2/post/{id}/flag/
Parameters
| Name | In | Type | Required | Description | 
|---|---|---|---|---|
| id | path | string | true | A unique integer value identifying this post | 
| flag_type | body | integer | true | A integer from 0 to 4 | 
Enumerated Values
| Parameter | Value | Description | 
|---|---|---|
| flag_type | 0 | spam | 
| flag_type | 1 | aggressive | 
| flag_type | 2 | vulgar | 
| flag_type | 3 | poor | 
| flag_type | 4 | offtopic | 
Example Body Parameters
- JSON
{
  "flag_type": "integer"
}
Example Request
- JavaScript
- Bash
const inputBody = '{
  "flag_type": "integer"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/post/{id}/flag/',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});
# You can also use wget
curl -X POST /api/v2/post/{id}/flag/ \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access_token}' \
  --data-raw '{
    "flag_type": "integer"
  }'
Responses
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 204 | No Content | Response status code | None |