Skip to main content
POST
/
v3
/
{phone_number_id}
/
messages
Send Media Template Message with Multiple Buttons
curl --request POST \
  --url https://one.telepie.com/v3/{phone_number_id}/messages \
  --header 'apikey: <api-key>'

Request Body Parameters

phone_number_id
string
required
Specifies the recipient’s phone number in international format (e.g., “1xxxxxxxxxx”).
{
  "to": "91XXXXXXXXXX",
  "type": "template",
  "template": {
    "language": {
      "code": "en_US"
    },
    "name": "multiple_button_template_image01",
    "components": [
      {
        "type": "header",
        "parameters": [
          {
            "type": "image",
            "image": {
              "link": "https://farm4.staticflickr.com/3075/3168662394_7d7103de7d_z_d.jpg"
            }
          }
        ]
      }
    ]
  },
  "messaging_product": "whatsapp"
}