curl --request POST \
--url https://api.hubmessage.io/v1/channels/{channelId}/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"recipient": {
"identifier": "5511999999999"
},
"content": {
"type": "INTERACTIVE_ACTION",
"body": {
"message": "Como podemos ajudar?"
},
"header": {
"message": "Hub Message"
},
"footer": {
"message": "Escolha uma opção"
},
"attachments": [
{
"id": "1",
"title": "Visite nosso site",
"name": "URL",
"url": "https://www.hubmessage.io"
},
{
"id": "2",
"title": "Fale conosco",
"name": "CALL",
"phones": [
"5511999999999"
]
}
]
}
}
'