Reputation: 1
I am trying to send a WhatsApp template message using Postman. I am receiving a successful response with a WhatsApp ID, but the message is not being received by the recipient (which is myself for testing purposes).
Here are the details of my request:
{
"to": "recipient_number",
"template": {
"name": "your_template_name",
"language": {
"code": "en",
"policy": "deterministic"
},
"components": [
{
"type": "BODY",
"text": "Hello, this is a test message."
}
]
}
}
I have checked the following:
Despite these checks, the message is not being delivered. I would appreciate any insights.
Upvotes: 0
Views: 394
Reputation: 21
You can use this tool webhook.site to check the error of failure.
How to use it.
My guess is that you might have not attached payment method to you business manager for the failure.
Upvotes: 0