const response = await fetch('https://base_url/groups/sendButtonMessage', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"instance_key": "id",
"jid": "groupid",
"contentText": "body",
"footerText": "footer",
"buttons": [
{
"buttonId": "btn1",
"buttonText": {
"displayText": "Yes"
},
"type": 1
},
{
"buttonId": "btn2",
"buttonText": {
"displayText": "No"
},
"type": 1
}
]
}),
});
const data = await response.json();