# DELETE /api/ticket-comments/{id} > Ticket Comments - Delete Ticket Comment - **Endpoint:** `DELETE /api/ticket-comments/{id}` - **Group:** Ticket Comments - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/TicketCommentsController.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/ticket-comments/123" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 200 OK { "status": 200, "messages": {"success": "Comment delete success"} } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/ticket-comments/delete-ticket-comment/