Relative Content

Tag Archive for axiosnestjswhatsappwhatsapp-cloud-api

Cannot sent text message using Whatsapp API with NestJS

I’m trying to setup the endpoints for my application, witch is using the WhatsApp API for sending and receiving messages. For the Sending message endpoint, if I’m setting up the payload for sending a template is working as it should, but if i try to send a custom message it won’t deliver it. I’ve been trying to look on the documentation on how to properly send a text message, not a template, but it fails to deliver it.
Here is the method in witch I’m trying to send a ‘message’.
My Postman body looks like this.
{
“to”: <MY_NUMBER>,
“message” : “TEST”
}
The endpoint