Authorization: ********************{
"whats_app_template": {
"template_name": "New Promotion",
"language": "en",
"category": "MARKETING",
"purpose": "promotion",
"whats_app_business_account_id": 456,
"components_attributes": [
{
"component_type": "header",
"data_type": "image"
},
{
"component_type": "body",
"data_type": "text",
"value": "Exciting news! Get 20% off on all items. Use code {{campaign.coupon_code | fallback: 'DEFAULT20', example: 'SUMMER20'}}. Shop now!",
"index": 0
},
{
"component_type": "button",
"sub_type": "quick_reply",
"data_type": "text",
"value": "Shop Now",
"index": 1
}
]
}
}curl --location --request POST '/api/v1/whats_app_templates' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"whats_app_template": {
"template_name": "New Promotion",
"language": "en",
"category": "MARKETING",
"purpose": "promotion",
"whats_app_business_account_id": 456,
"components_attributes": [
{
"component_type": "header",
"data_type": "image"
},
{
"component_type": "body",
"data_type": "text",
"value": "Exciting news! Get 20% off on all items. Use code {{campaign.coupon_code | fallback: '\''DEFAULT20'\'', example: '\''SUMMER20'\''}}. Shop now!",
"index": 0
},
{
"component_type": "button",
"sub_type": "quick_reply",
"data_type": "text",
"value": "Shop Now",
"index": 1
}
]
}
}'{}