Delete a Post
This endpoint delete a Post
info
This operation requires authentication. The logged user must be the post creator
HTTP Request
DELETE /api/v2/post/{id}/
Parameters
| Name | In | Type | Required | Description | 
|---|---|---|---|---|
| id | path | string | true | A unique integer value identifying this post | 
Example Request
- JavaScript
 - Bash
 
fetch('/api/v2/post/{id}/',
{
  method: 'DELETE',
  headers: {
    'Authorization': 'Bearer {access_token}'
  }
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});
# You can also use wget
curl -X DELETE /api/v2/post/{id}/
  -H 'Authorization: Bearer {access_token}'
Responses
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 204 | No Content | Response status code | None |