優惠券代碼範本是顯示單一複製代碼按鈕的行銷範本。點按時,代碼會複製到顧客的剪貼簿。
使用 WhatsApp Business 帳號 > 訊息範本端點來建立優惠券代碼範本。
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 ] } ] }
預留位置 | 說明 | 範例值 |
---|---|---|
字串 | 必要項目。 範本名稱。 最多 512 個字元。 |
|
列舉 | 必要項目。 範本語言和地區設定代碼。 |
|
字串 | 必要項目。 點按時所要複製的優惠券代碼。 最多 15 個字元。 |
|
成功時,API 會回應以下內容:
{ "category" : "<CATEGORY>", "id" : "<ID>", "status" : "<STATUS>" }
預留位置 | 說明 | 範例值 |
---|---|---|
列舉 | 範本類別。 |
|
數值字串 | 範本編號。 |
|
列舉 | 範本狀態。 |
|
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" }
使用雲端 API 在範本訊息中傳送獲准的優惠券代碼範本。請參閱傳送優惠券代碼範本。