Delete an Article
DELETE/api/knowledge-base/articles/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| id | Number | Article unique ID |
curl -X DELETE "https://yoursite.com/api/knowledge-base/articles/123" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
HTTP/1.1 200 OK
{ "status": 200, "messages": {"success": "The record has been deleted."} }