Sending Templates
Guide to Sending a Template Message with Waabot API
Introduction
Sending a Template Message
/send-message{
"platform": "whatsapp",
"recipient": "2349048988056",
"message": {
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "2349048988056",
"type": "template",
"template": {
"name": "otp",
"language": {
"code": "en_US"
},
"components": [
{
"type": "body",
"parameters": [
{
"type": "text",
"text": "1234"
}
]
},
{
"type": "button",
"sub_type": "url",
"index": "0",
"parameters": [
{
"type": "text",
"text": "2234"
}
]
}
]
}
}
}Example Request to Send a Template Message
Explanation of the Request Body
Summary
Last updated