cURL
curl --request DELETE \ --url https://localhost:5000/comments/reply/{comment_id} \ --header 'Authorization: Bearer <token>'
{ "success": true, "message": "Reply deleted" }
Delete a reply (second-level comment) by ID. Use /comments/delete/ for top-level comments.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Reply ID to delete
Reply deleted successfully
true
"Reply deleted"