# DELETE /api/projects/{id} > Projects - Delete a Project - **Endpoint:** `DELETE /api/projects/{id}` - **Group:** Projects - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ProjectsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Project unique ID | ## Request example ```bash curl -X DELETE "https://yoursite.com/index.php/api/projects/123" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 200 OK { "status": true, "message": "Project Deleted Successfully." } HTTP/1.1 404 Not Found { "status": false, "message": "Project Delete Fail." } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/projects/delete-project/