SendTemplateMessages

Send ButtonLinkMessage

post
Query parameters
idstringRequiredExample: id
Body
all ofOptional
and
anyOptionalExample: {"jid":"receivernumber","text":"body text","footer":"footer text","imageUrl":"","templateButtons":[{"index":1,"urlButton":{"displayText":"Google","url":"https://google.com"}},{"index":2,"callButton":{"displayText":"Call me!","phoneNumber":"+1 (234) 5678-901"}},{"index":3,"quickReplyButton":{"displayText":"This is a reply, just like normal buttons!","id":"id-like-buttons-message"}}]}
Responses
200Success
post
POST /chats/sendTemplateMessages HTTP/1.1
Host: base_url
Content-Type: application/json
Accept: */*
Content-Length: 385

{
  "jid": "receivernumber",
  "text": "body text",
  "footer": "footer text",
  "imageUrl": "",
  "templateButtons": [
    {
      "index": 1,
      "urlButton": {
        "displayText": "Google",
        "url": "https://google.com"
      }
    },
    {
      "index": 2,
      "callButton": {
        "displayText": "Call me!",
        "phoneNumber": "+1 (234) 5678-901"
      }
    },
    {
      "index": 3,
      "quickReplyButton": {
        "displayText": "This is a reply, just like normal buttons!",
        "id": "id-like-buttons-message"
      }
    }
  ]
}
200Success

No content

Last updated

Was this helpful?