Delete a Project
DELETE/api/projects/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| id | Number | Project unique ID |
curl -X DELETE "https://yoursite.com/api/projects/123" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
HTTP/1.1 200 OK
{
"status": true,
"message": "Project Deleted Successfully."
}
HTTP/1.1 404 Not Found
{
"status": false,
"message": "Project Delete Fail."
}