クーポンコードテンプレートとは、単一のコードコピーボタンを表示するマーケティングテンプレートです。タップすると、コードは顧客のクリップボードにコピーされます。
[WhatsAppビジネスアカウント] > [メッセージテンプレート]エンドポイントを使用して、クーポンコードテンプレートを作成します。
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文字。 |
|
Enum | 必須。 言語とロケールコードのテンプレート。 |
|
文字列 | 必須。 タップするとコピーされるクーポンコード。 最大15文字。 |
|
成功すると、APIは以下のように応答します。
{ "category" : "<CATEGORY>", "id" : "<ID>", "status" : "<STATUS>" }
プレースホルダー | 説明 | 値の例 |
---|---|---|
Enum | テンプレートカテゴリ。 |
|
数値文字列 | テンプレートID。 |
|
Enum | テンプレートステータス。 |
|
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を使用して、承認されたクーポンコードテンプレートをテンプレートメッセージで送信します。クーポンコードテンプレートの送信を参照してください。