# DELETE /api/leave-applications/{id} > Leave Applications - Delete Leave Application - **Endpoint:** `DELETE /api/leave-applications/{id}` - **Group:** Leave Applications - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/LeaveApplicationsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Request example ```bash curl -X DELETE "https://yoursite.com/index.php/api/leave-applications/123" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 200 OK { "status": 200, "messages": {"success": "Leave application delete success"} } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/leave-applications/delete-leave-application/