curl --request POST \
--url https://api.kapso.ai/platform/v1/whatsapp/broadcasts/{broadcast_id}/recipients \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"whatsapp_broadcast": {
"recipients": [
{
"phone_number": "+14155550123",
"components": [
{
"type": "body",
"parameters": [
{
"type": "text",
"parameter_name": "first_name",
"text": "John"
},
{
"type": "text",
"parameter_name": "discount",
"text": "SAVE50"
}
]
}
]
},
{
"phone_number": "+14155550124",
"components": [
{
"type": "body",
"parameters": [
{
"type": "text",
"parameter_name": "first_name",
"text": "Jane"
},
{
"type": "text",
"parameter_name": "discount",
"text": "SAVE40"
}
]
}
]
}
]
}
}
'