Docs/WhatsApp/Sending Messages

Sending WhatsApp Messages

Send text, media, and interactive messages via WhatsApp.

Send Text Message

POST /v1/whatsapp/send

{
  "to": "+1234567890",
  "type": "text",
  "text": {
    "body": "Hello! Thanks for contacting us."
  }
}

Send Media Message

POST /v1/whatsapp/send

{
  "to": "+1234567890",
  "type": "image",
  "image": {
    "url": "https://example.com/image.jpg",
    "caption": "Check out our new product!"
  }
}

Send Template Message

POST /v1/whatsapp/send

{
  "to": "+1234567890",
  "type": "template",
  "template": {
    "name": "order_update",
    "language": "en",
    "components": [
      {
        "type": "body",
        "parameters": [
          { "type": "text", "text": "John" },
          { "type": "text", "text": "ORD-12345" }
        ]
      }
    ]
  }
}