Skip to main content
DELETE
/
comment
/
{tableId}
/
{recordId}
/
{commentId}
/
reaction
cURL
curl --request DELETE \
  --url http://127.0.0.1:3000/api/comment/{tableId}/{recordId}/{commentId}/reaction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reaction": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

tableId
string
required
recordId
string
required
commentId
string
required

Body

application/json
reaction
string
required

Response

200

Successfully delete comment reaction.

Last modified on December 10, 2025