curl --request POST \
--url https://zapi.hubmessage.io/channels/{channel_id}/token/{channel_token}/send-button-list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"phone": "5511999999999",
"message": "Como você avalia nosso atendimento?",
"buttonList": {
"buttons": [
{
"id": "1",
"label": "Ótimo"
},
{
"id": "2",
"label": "Bom"
},
{
"id": "3",
"label": "Regular"
}
]
}
}
'