curl 'https://graph.facebook.com/<API_VERSION>/<WHATSAPP_BUSINESS_PHONE_NUMBER_ID>/messages' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-d '{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "<PHONE_NUMBER>",
"type": "interactive",
"interactive": {
"type": "carousel",
"body": {
"text": "Check out our latest offers!"
},
"action": {
"cards": [\
{\
"card_index": 0,\
"type": "cta_url",\
"header": {\
"type": "image",\
"image": {\
"link": "https://example.com/image1.png"\
}\
},\
"body": {\
"text": "Exclusive deal #1"\
},\
"action": {\
"name": "cta_url",\
"parameters": {\
"display_text": "Shop now",\
"url": "https://shop.example.com/deal1"\
}\
}\
},\
{\
"card_index": 1,\
"type": "cta_url",\
"header": {\
"type": "image",\
"image": {\
"link": "https://example.com/image2.png"\
}\
},\
"body": {\
"text": "Exclusive deal #2"\
},\
"action": {\
"name": "cta_url",\
"parameters": {\
"display_text": "Shop now",\
"url": "https://shop.example.com/deal2"\
}\
}\
}\
]
}
}
}'