Skip to content

message_reactions Webhook Event Reference

Updated: Oct 29, 2019

This event will be sent to your webhook when a user reacts to a message on Messenger.
You can subscribe to this callback by selecting the message_reactions field when setting up your webhook.

Example

{
   "sender":{
      "id":"<PSID>"
   },
   "recipient":{
      "id":"<PAGE_ID>"
   },
   "timestamp":1458668856463,
   "reaction":{
         "reaction": "smile|angry|sad|wow|love|like|dislike|other",
         "emoji": "\u{2764}\u{FE0F}",
         "action": "react|unreact",
         "mid": "<MID_OF_ReactedTo_Message>",
   }
}

Properties

sender

sender FieldDescription
id stringThe Page-scoped ID for the person who sent a message to your business

recipient

recipient FieldDescription
id stringThe ID for your Facebook Page

reaction

PropertyTypeDescription
reactionstringText description of the reaction. Possible values: smile, angry, sad, wow, love, like, dislike. other could also be returned in case the emoji based reaction does not match the ones above.
emojiUTF-8 EmojiReference to the emoji corresponding to the reaction.
actionstringAction performed by the user. Possible values: react, unreact
midstringReference to the Message ID that the user reacted performed the reaction on.

Unofficial mirror for reference/search purposes. All content originates from developers.facebook.com — see the source link at the top of each page. Machine-readable indexes: llms.txt · llms-full.txt · About