Created
June 18, 2022 18:00
-
-
Save prasath95/7b66529227812d532b704cb3cf9a6387 to your computer and use it in GitHub Desktop.
Programming make sense food order template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"messaging_product": "whatsapp", | |
"recipient_type": "individual", | |
"to": "PHONE_NUMBER", | |
"type": "template", | |
"template": { | |
"name": "TEMPLATE_NAME", | |
"language": { | |
"code": "LANGUAGE_AND_LOCALE_CODE" | |
}, | |
"components": [ | |
{ | |
"type": "header", | |
"parameters": [ | |
{ | |
"type": "image", | |
"image": { | |
"link": "http(s)://URL" | |
} | |
} | |
] | |
}, | |
{ | |
"type": "body", | |
"parameters": [ | |
{ | |
"type": "text", | |
"text": "TEXT_STRING" | |
}, | |
{ | |
"type": "currency", | |
"currency": { | |
"fallback_value": "VALUE", | |
"code": "USD", | |
"amount_1000": NUMBER// *1000 | |
} | |
}, | |
{ | |
"type": "date_time", | |
"date_time": { | |
"fallback_value": "MONTH DAY, YEAR" | |
} | |
} | |
] | |
}, | |
{ | |
"type": "button", | |
"sub_type": "quick_reply", | |
"index": "0", | |
"parameters": [ | |
{ | |
"type": "payload", | |
"payload": "PAYLOAD" | |
} | |
] | |
}, | |
{ | |
"type": "button", | |
"sub_type": "quick_reply", | |
"index": "1", | |
"parameters": [ | |
{ | |
"type": "payload", | |
"payload": "PAYLOAD" | |
} | |
] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment