Media carousel
This page describes interactive media carousel messages
Last updated
Was this helpful?
Was this helpful?
curl --location 'https://https://waba-v2.360dialog.io/messages' \
--header 'Content-Type: application/json' \
--header 'D360-API-KEY: <token>' \
--data '
{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "<<RECIPIENT_PHONE_NUMBER>>",
"type": "interactive",
"interactive": {
"type": "carousel",
"body": {
"text": "<BODY_TEXT>"
},
"action": {
"cards": [
{
"card_index": 0,
"type": "cta_url",
"header": {
"type": "image",
"image": {
"link": "https://www.yourimage.jpeg"
}
},
"body": {
"text": "<BODY_TEXT>"
},
"action": {
"name": "cta_url",
"parameters": {
"display_text": "<TEXT>",
"url": "https://www.website.com/url-example"
}
}
},
{
"card_index": 1,
"type": "cta_url",
"header": {
"type": "image",
"image": {
"link": "https://www.yourimage.jpeg"
}
},
"body": {
"text": "<BODY_TEXT>"
},
"action": {
"name": "cta_url",
"parameters": {
"display_text": "<TEXT>",
"url": "https://www.website.com/url-example"
}
}
},
{
"card_index": 2,
"type": "cta_url",
"header": {
"type": "image",
"image": {
"link": "https://www.yourimage.jpeg"
}
},
"body": {
"text": "<BODY_TEXT>"
},
"action": {
"name": "cta_url",
"parameters": {
"display_text": "<TEXT>",
"url": "https://www.website.com/url-example"
}
}
}
]
}
}
}'{
"messaging_product": "whatsapp",
"contacts": [{
"input": "PHONE_NUMBER",
"wa_id": "WHATSAPP_ID",
}]
"messages": [{
"id": "wamid.ID",
}]
}