curl -X POST https://chatbot.menuia.com/api/create-message \
-H "Content-Type: application/json" \
-d '{
"appkey": "SUA_APPKEY_AQUI",
"authkey": "SUA_AUTHKEY_AQUI",
"to": "+5581999999999",
"message": "Olá! Como posso ajudar?",
"header_title": "Atendimento",
"footer_text": "Escolha uma opção",
"buttons": [
{
"type": "replyButton",
"displaytext": "Ver Produtos"
},
{
"type": "urlButton",
"displaytext": "Acessar Site",
"action": "https://seusite.com"
},
{
"type": "callButton",
"displaytext": "Ligar Agora",
"action": "5581999999999"
}
]
}'