Messenger Platform
Messenger Platform
Business Messaging
Messenger Platform
Resources

Message Templates

Updated: May 5, 2026
ImageImageImage
Message templates offer a way for you to offer a richer in-conversation experience than standard text messages by integrating buttons, images, lists, and more alongside text a single message. Templates can be use for many purposes, such as displaying product information, asking the message recipient to choose from a pre-determined set of options, and showing search results.

Available templates

The following templates are available for sending structured messages:
TemplateDescriptionUse case
Text message with up to three attached buttons.
Offer the recipient predefined response options or actions to take.
Structured message with a title, subtitle, image, and up to three buttons. Supports a default_action URL.
Display product cards, search results, or content previews.
Send images, GIFs, or video as a structured message with a button. Videos and GIFs are playable in the conversation.
Share rich media with an optional call-to-action.
Order confirmation with order summary, payment details, and shipping information.
Send purchase confirmations and order receipts.
Renders products from your catalog. Product details (image, title, price) are pulled automatically.
Showcase products from your catalog in a conversation.
Send a coupon or discount offer in a structured format.
Deliver promotional offers or discount codes.
Native feedback survey template for measuring customer experience. Supports rating scales and free-text responses.
Collect customer satisfaction data after a support interaction.
Pre-approved template for order updates, account notifications, and appointment reminders with personalized details and call-to-action buttons.
Send transactional updates such as shipping status, appointment reminders, or account alerts.

Choosing a template

Use this guide to select the right template for your use case:

Send a Message Template

To send a message template, send a POST request to the /<PAGE_ID>/messages endpoint with the recipient’s Page-scoped ID, the messaging_type, and the message attachment containing the template type and payload with details about the specific template, such as title, images, and buttons.
curl -X POST -H "Content-Type: application/json" -d '{
  "recipient":{
    "id":"<PSID>"
  },
  "messaging_type":"RESPONSE",
  "message":{
    "attachment":{
      "type":"template",
      "payload":{
        "template_type":"<TEMPLATE_TYPE>",
        "elements":[
          {
            "title":"<TEMPLATE_TITLE>",
            ...
          }
        ]
      }
    }
  }
}' "https://graph.facebook.com/<API_VERSION>/<PAGE_ID>/messages?access_token=<PAGE_ACCESS_TOKEN>"
The body of the request follows a standard format for all template types, with the message.attachment.payload property containing the type and content details that are specific to each template type.

Using Buttons

Most message templates allow you to incorporate one or more buttons as part of the template. These buttons allow you to offer the message recipient actions they can take in response to the template.
The type of buttons that can be used vary by template. See the specific template reference documentation for more information.
For more on button types available in the Messenger Platform, see Buttons.
Did you find this page helpful?
Thumbs up icon
Thumbs down icon