Skip to content
Download Beeper

Remove a reaction

DELETE/v1/chats/{chatID}/messages/{messageID}/reactions/{reactionKey}

Remove the reaction added by the authenticated user from an existing message.

Path ParametersExpand Collapse
chatID: string

Chat ID. Input routes also accept the local chat ID from this installation when available.

messageID: string

Message ID.

reactionKey: string

Reaction key to remove (emoji, shortcode, or custom emoji key)

minLength1
ReturnsExpand Collapse
chatID: string

Chat ID. Input routes also accept the local chat ID from this installation when available.

messageID: string

Message ID.

reactionKey: string

Reaction key that was removed.

success: true

Always true. Indicates the reaction removal was queued; failures return an error response.

Remove a reaction

curl http://localhost:23373/v1/chats/$CHAT_ID/messages/$MESSAGE_ID/reactions/$REACTION_KEY \
    -X DELETE \
    -H "Authorization: Bearer $BEEPER_ACCESS_TOKEN"
{
  "chatID": "!whatsapp_15550101002:ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc.local-whatsapp.localhost",
  "messageID": "1343993",
  "reactionKey": "❤️",
  "success": true
}
Returns Examples
{
  "chatID": "!whatsapp_15550101002:ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc.local-whatsapp.localhost",
  "messageID": "1343993",
  "reactionKey": "❤️",
  "success": true
}