Remove a reaction

DELETE/chat-rooms/:roomId/messages/:messageId/reactions

Remove your own reaction. Succeeds even if you had not reacted (idempotent). The emoji is passed as a query parameter.

AuthLogin required

Path parameters

roomIdstringrequired

Chat room ID.

messageIdstringrequired

Message ID.

Query parameters

emojistringrequired

The emoji to remove.

Request
curl https://api.4s.link/chat-rooms/ROOM_ID/messages/MESSAGE_ID/reactions \
-X DELETE \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"messageId": "m1a2b3c4-...",
"reactions": []
}