post
https://www.fast2sms.com/dev/whatsapp///messages
Send a Carousel Template message. This involves defining variables for the main message body, as well as specific media (headers) and text variables for each card in the carousel.
Example Request Body
{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "919833056101",
"type": "template",
"template": {
"name": "test_template",
"language": {
"code": "en"
},
"components": [
{
"type": "BODY",
"parameters": [
{
"type": "TEXT",
"text": "15OFF"
},
{
"type": "TEXT",
"text": "15"
}
]
},
{
"type": "CAROUSEL",
"cards": [
{
"card_index": 0,
"components": [
{
"type": "HEADER",
"parameters": [
{
"type": "IMAGE",
"image": {
"link": "[https://example.com/wa/final.jpg](https://example.com/wa/final.jpg)"
}
}
]
},
{
"type": "BODY",
"parameters": [
{
"type": "text",
"text": "15OFF"
},
{
"type": "text",
"text": "15"
}
]
}
]
}
]
}
]
}
}