Send a Coupon Code Template Message

The following WhatsApp API request format uses a coupon code template.

curl --location 'https://api.kaleyra.io/v1/<sid>/messages' \
--header 'api-key: <api-key>' \
--form 'to="<to-number>"' \
--form 'type="mediatemplate"' \
--form 'template_name="<template_name>"' \
--form 'params="\"<params>\""' \
--form 'channel="whatsapp"' \
--form 'from="<from-no>"' \
--form 'callback_profile_id’="<callback_profile_id>”’ \
--form 'coupon_code="\"<coupon_code>"”’ \
--form 'media_url="<media_url>”’

Sample WhatsApp API request message with coupon code template

The following API request sends a WhatsApp message with a coupon code template.

curl --location 'https://api.kaleyra.io/v1/HXIN1784509XXXXX/messages' \
--header 'api-key: XXXXX77c4d1cfa6854a7423a68e7XXXXX' \
--form 'to="1202XXXXXXX"' \
--form 'type="mediatemplate"' \
--form 'template_name="cc_img_statics20"' \
--form 'params="\"Mike\",\"25%\""' \
--form 'channel="whatsapp"' \
--form 'from="+1202XXXXXXX"' \
--form 'callback_profile_id="IN_b86b078e-046b-4565-892c-XXXXXXXXXXXX"' \
--form 'coupon_code="\"2532334\""' \
--form 'media_url="https://d38vr2u95vsr9f.cloudfront.net/docs/16879300632.jpg"'

Parameter Description Table

Following table shows the list of parameters and data types supported:

ParameterData TypeDescriptionExampleMandatory?
SID StringSecurity Identifier of your kaleyra.io account. HXXXXXXX071USYes
api_key StringYour API Key generated by Kaleyra.io.Ac4XXXXX21fYes
to StringA valid WhatsApp number of the recipient.
Ensure that the country code is prefixed to the number. (E164 format).
Note: You can add multiple numbers and separate each number using the comma (,) delimiter.
+1202XXXXXXXYes
type StringThe message type. mediatemplateYes
template_nameStringThe template name.coupon_templateYes
channel StringChannel on which the message is sent. For the WhatsApp channel, the only allowed value is WhatsApp.WhatsApp Yes
from StringThe number registered with WhatsApp business from which the message is to be sent. Ensure that the country code is prefixed to the number. (E164 format).+1202XXXXXXXYes
coupon_code StringThis field will hold the text that needs to be copied when the COPY CODE button is clicked.coupon_code: “2532334”Yes
callback_profile_id StringThe callback ID created for WhatsApp channel to receive updates about the message delivery status.

Note: You can also use callback_url to get updates about the message delivery status to the specified URL.
IN_b86b078e-046b-4565-892c-XXXXXXXXXXXXNo
media_url StringThe media URL should be public and have a file extension.

Note:

URL path is supported for image/video/media instead of uploading it.
If both media and media_url are passed in API request, then only "media_url" will be considered.
This parameter is mandatory only if used in the template header.
https://www.kaleyra.com/wp-content/uploads/kaleyra.pngNo

Sample success response

The following is a sample success response.

{  
    "id": "2a584df7-79df-44a2-8cb0-efa5fc276125",  
    "type": "mediatemplate",  
    "body": null,  
    "createdDateTime": "2024-01-09 13:00:14+00:00",  
    "totalCount": 1,  
    "data": [  
        {  
            "message_id": "2a584df7-79df-44a2-8cb0-efa5fc276125:0",  
            "recipient": "919986517019"  
        }  
    ],  
    "error": {}  
}

Sample error response

The following is a sample error response.

{  
    "code": "RBC201",  
    "message": "Incorrect SID or API key.",  
    "data": \[],  
    "error": {  
        "error": "Incorrect SID or API key."  
    }  
}