Messenger Platform
Messenger Platform
Business Messaging
Messenger Platform
Resources

Webhook Events Reference

Updated: Jun 26, 2024
Webhook events are how the Messenger Platform notifies your bot when a variety of interactions or events happen, including when a person sends a message. Webhook events are sent by the Messenger Platform as POST requests to your webhook.
Note: You will need to subscribe all messaging apps for your business to the messaging webhooks.

List of Webhook Events

Below is a list of the events that can be sent to your webhook from the Messenger Platform.
Note: It is recommended that you use the latest API version to receive all information available for each webhook.
Messaging Webhooks Field Description
message_deliveries
A notification is sent when a message that was sent by your business has been delivered to a customer. Only available for Messenger conversations.
message_echoes
A notification is sent when your business has sent a message. This separate webhook field is available only for Messenger conversations. For Instagram Messaging conversations, the message echo notifications are included with the message webhook field subscription.
message_edits
A notification is sent when a customer edits a previously-sent message. Only availalbe for Messenger conversations.
message_reactions
message_reads
A notification is sent when a customer reads a message sent by your business, for Messenger conversations. See messaging_seen for Instagram Messaging conversations.
messages
A notification is sent when your business has received a message from a customer from any conversation entry point. For Instagram Messaging, this subscription will also include notifications when your Instagram Professional account has sent a message since there is no separate message_echoes subscription field for Instagram Messaging.
messaging_account_linking
A notification is sent when a customer links or unlinks their Messenger account from their account with your business. Only available for Messenger conversations.
messaging_feedback
A notification is sent when a person has submitted feedback for your business. Only available for Messenger conversations.
messaging_game_plays
A notification is sent when a person has played a round of an Instant Game. Only available for Messenger conversations.
messaging_handovers
messaging_optins
messaging_policy_enforcement
messaging_postbacks
messaging_referrals
messaging_seen
A notification is sent when a customer reads a message sent by your business, for Instagram Messaging conversations. See messaging_reads for Messenger conversations.
messenger_template_status_update
response_feedback
send_cart
A notification is sent when your business has received a message from a customer, when the message contains cart/order information. Only available for Messenger conversations.
standby

Event Format

All callbacks for the Messenger Platform have a common set of properties that provide information you will need to process and respond to input from people using your bot. In addition to the properties below, each event also has a set of specific properties that detail the event.
{
  "object":"page",
  "entry":[
    {
      "id":"<PAGE_ID>",
      "time":1458692752478,
      "messaging":[
        {
          "sender":{
          "id":"<PSID>"
          },
          "recipient":{
            "id":"<PAGE_ID>"
          },
          ...
        }
      ]
    }
  ]
}

Properties

Property Type Description
object
String
Value will be page
entry
Array of entry
Array containing event data

entry

Property Type Description
id
String
Page ID of page
time
Number
Time of update (epoch time in milliseconds)
messaging
Array<messaging>
Array containing one messaging object. Note that even though this is an array, it will only contain one messaging object.

entry.messaging

Property Type Description
sender.id
String
Sender user ID
recipient.id
String
Recipient user ID
Did you find this page helpful?
Thumbs up icon
Thumbs down icon