curl --request POST \
--url https://zapi.hubmessage.io/channels/{channel_id}/token/{channel_token}/send-carousel \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"phone": "5511999999999",
"message": "Confira nossos produtos:",
"carousel": [
{
"text": "Produto A",
"image": "https://exemplo.com/produto-a.png",
"buttons": [
{
"id": "1",
"type": "URL",
"label": "Ver detalhes",
"url": "https://www.hubmessage.io"
},
{
"id": "2",
"type": "REPLY",
"label": "Tenho interesse"
}
]
},
{
"text": "Produto B",
"image": "https://exemplo.com/produto-b.png",
"buttons": [
{
"id": "3",
"type": "URL",
"label": "Ver detalhes",
"url": "https://www.hubmessage.io"
},
{
"id": "4",
"type": "REPLY",
"label": "Tenho interesse"
}
]
}
]
}
'