v1

latestOpenAPI 3.0.02026-07-2483164186.3 KB
Outgoing Messages

Send Whatsapp Interactive Button Message

Send Whatsapp Interactive Button Message

post/whatsapp/message/interactive

Request body

fromstring phone

The phone number from which the message is sent, with the country code

tostring phone required

The phone number to which the message is sent, with the country code

messageIdstring

Message ID (UUID v4) to be used for the message. If not provided, a random UUID v4 will be generated

Example request

{
  "from": "+919999999999",
  "to": "+919999999999",
  "messageId": "uuid-v4",
  "content": {
    "header": "Header text",
    "body": "Message body",
    "footer": "Footer text",
    "buttons": [
      {
        "id": "uuid-v4",
        "title": "Button title"
      }
    ]
  }
}