curl -L \
--request POST \
--url 'https://base_url/groups/sendButtonMessage?id=id' \
--header 'Content-Type: application/json' \
--data '{
"instance_key": "id",
"jid": "groupid",
"contentText": "body",
"footerText": "footer",
"buttons": [
{
"buttonId": "btn1",
"buttonText": {
"displayText": "Yes"
},
"type": 1
},
{
"buttonId": "btn2",
"buttonText": {
"displayText": "No"
},
"type": 1
}
]
}'