Plantilla de Código de Cupón
Last updated
Last updated
POST https://api.1msg.io/{{channel}}/addTemplate
Content-Type: application/json
Body:{
"name": "coupon_code_fall2023_26off",
"category": "MARKETING",
"language": "en_US",
"components": [
{
"type": "HEADER",
"format": "TEXT",
"text": "Our Fall Sale is on!"
},
{
"type": "BODY",
"text": "Shop now through November and use code {{1}} to get {{2}} off of all merchandise!",
"example": {
"body_text": [
[
"25OFF",
"25%"
]
]
}
},
{
"type": "BUTTONS",
"buttons": [
{
"type": "QUICK_REPLY",
"text": "Unsubscribe"
},
{
"type": "COPY_CODE",
"example": "25OFF"
}
]
}
]POST https://api.1msg.io/{{channel}}/sendTemplate
Content-Type: application/json
Body: {
"template": "coupon_code_fall2023_25off",
"language": {
"policy": "deterministic",
"code": "en_US"
},
"namespace": "{{namespace}}",
"params": [
{
"type": "body",
"parameters": [
{
"type": "text",
"text": "25OFF"
},
{
"type": "text",
"text": "25%"
}
]
},
{
"type": "button",
"sub_type": "COPY_CODE",
"index": 1,
"parameters": [
{
"type": "coupon_code",
"coupon_code": "25OFF"
}
]
}
],
"phone": "XXXXXXXXXXX"
}