Template kode kupon adalah template marketing yang menampilkan satu tombol kode salin. Saat diketuk, kode akan disalin ke papan klip pelanggan.
Gunakan endpoint Akun WhatsApp Business > Pesan Template untuk membuat template kode kupon.
POST /<WHATSAPP_BUSINESS_ACCOUNT_ID>/message_templates
{ "name": "<NAME>", "language": "<LANGUAGE>", "category": "MARKETING", "components": [ ... // Additional components, if using { "type":"BUTTONS", "buttons": [ { "type":"COPY_CODE", "example": "<EXAMPLE>" }, ... // Additional buttons, if using ] } ] }
Placeholder | Deskripsi | Contoh Nilai |
---|---|---|
String | Wajib. Nama template. Maksimal 512 karakter. |
|
Enum | Wajib. Template bahasa dan kode locale. |
|
String | Wajib. Kode kupon yang akan disalin saat diketuk. Maksimal 15 karakter. |
|
Setelah berhasil, API akan menanggapi dengan berikut ini:
{ "category" : "<CATEGORY>", "id" : "<ID>", "status" : "<STATUS>" }
Placeholder | Deskripsi | Contoh Nilai |
---|---|---|
Enum | Kategori template. |
|
String numerik | ID Template. |
|
Enum | Status template. |
|
curl 'https://graph.facebook.com/v21.0
/102290129340398/message_templates' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer EAAJB...' \
-d '
{
"name": "coupon_code_fall2023_25off",
"language": "en_US",
"category": "MARKETING",
"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": "250FF"
}
]
}
]
}'
{ "category" : "MARKETING", "id" : "1924084211297547", "status" : "PENDING" }
Gunakan Cloud API untuk mengirim template kode kupon yang disetujui dalam pesan template. Lihat Mengirim Template Kode Kupon.