curl --location 'https://rest.qikberry.ai/v1/whatsapp/messages' \
--header 'x-phone-number: <WA_ID>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"to": "<USER_PHONE_NUMBER>",
"type": "interactive",
"interactive": {
"type": "carousel",
"body": {
"text": "Of course! Here are three of our latest arrivals, each under $25:"
},
"action": {
"cards": [
{
"card_index": 0,
"type": "cta_url",
"header": {
"type": "image",
"image": {
"link": "<IMAGE_URL>"
}
},
"body": {
"text": "*Blue Echeveria*\n\nA rosette-shaped succulent with powdery blue leaves, perfect for brightening up any space."
},
"action": {
"buttons": [
{
"type": "quick_reply",
"quick_reply": {
"id": "learn-blue-echeveria",
"title": "Learn more"
}
},
{
"type": "quick_reply",
"quick_reply": {
"id": "fav-blue-echeveria",
"title": "Add to favorites"
}
}
]
}
},
{
"card_index": 1,
"type": "cta_url",
"header": {
"type": "image",
"image": {
"link": "<IMAGE_URL>"
}
},
"body": {
"text": "*Zebra Haworthia*\n\nStriking white stripes on deep green leaves give this compact succulent a bold, modern look."
},
"action": {
"buttons": [
{
"type": "quick_reply",
"quick_reply": {
"id": "learn-zebra-haworthia",
"title": "Learn more"
}
},
{
"type": "quick_reply",
"quick_reply": {
"id": "fav-zebra-haworthia",
"title": "Add to favorites"
}
}
]
}
},
{
"card_index": 2,
"type": "cta_url",
"header": {
"type": "image",
"image": {
"link": "<IMAGE_URL>"
}
},
"body": {
"text": "*Panda Plant*\n\nSoft, fuzzy leaves with chocolate-brown edges—adorable and easy to care for."
},
"action": {
"buttons": [
{
"type": "quick_reply",
"quick_reply": {
"id": "learn-panda-plant",
"title": "Learn more"
}
},
{
"type": "quick_reply",
"quick_reply": {
"id": "fav-panda-plant",
"title": "Add to favorites"
}
}
]
}
}
]
}
}
}'{
"message": "1 numbers accepted",
"data": [
{
"messageId": "<MESSAGE_ID>",
"mobile": "<USER_PHONE_NUMBER>"
}
]
}