v1

latestOpenAPI 3.0.02026-07-2483164186.3 KB
Outgoing Messages

Send Whatsapp Interactive List Message

Send Whatsapp Interactive List Message

post/whatsapp/message/interactive-list

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",
    "button": "Button text",
    "sections": [
      {
        "title": "Section title",
        "rows": [
          {
            "id": "uuid-v4",
            "title": "Row title",
            "description": "Row description"
          }
        ]
      }
    ]
  }
}