const response = await fetch('https://base_url/chats/sendTemplateMessages', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"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"
}
}
]
}),
});
const data = await response.json();