DELETE
/
comments
/
reply
/
{comment_id}
Delete a reply
curl --request DELETE \
  --url https://localhost:5000/comments/reply/{comment_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Reply deleted"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

comment_id
string
required

Reply ID to delete

Response

Reply deleted successfully

success
boolean
Example:

true

message
string
Example:

"Reply deleted"