title | method | slug |
---|---|---|
Delete post by ID |
DELETE |
/api/v1/posts/delete-post-by-id |
https://yourdomain.com/api/v1/post/delete
Key | Value | Description |
---|---|---|
Authorization | Bearer {{AuthToken}} |
Authorization token |
Content-Type | application/json |
Fields | Type | Description | Required |
---|---|---|---|
postId | String |
Post ID | true |
Example
{
"postId": "1"
}
Fields | Type | Description |
---|---|---|
status.code | Integer |
Response code from server |
status.type | String |
Response status type (success/fail) |
Example
{
"status": {
"code": 200,
"type": "success"
}
}