This guide covers how to receive a callback response on a phone number registered to your WhatsApp Business Account (WABA) when a customer clicks on a quick reply button in an interactive message template.
You need a Plivo account — sign up with your work email address if you don’t have one already. If this is your first time using Plivo’s APIs, follow our instructions to set up a Node.js development environment.
You must have an onboarded WhatsApp account to receive inbound messages. If a number is listed as connected, it can receive inbound messages.
Create a file called receive_whatsapp.js
and paste into it this code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const port = 3000;
app.use(bodyParser.json());
app.post('/receive_whatsapp/', (req, res) => {
const { From, To, ContentType, Context, Button, Media0, Body } = req.body;
const fromNumber = From;
const toNumber = To;
switch (ContentType) {
case "text":
const text = Body;
console.log(`Text Message received - From: ${fromNumber}, To: ${toNumber}, Text: ${text}`);
break;
case "media":
const caption = Body;
console.log(`Media Message received - From: ${fromNumber}, To: ${toNumber}, Media Attachment: ${Media0}, Caption: ${caption}`);
break;
case "button":
const buttonText = Button.Text;
const buttonPayload = Button.Payload;
console.log(`Button Message received - From: ${fromNumber}, To: ${toNumber}, Button Text: ${buttonText}, Button Payload: ${buttonPayload}`);
break;
}
if (Context && Context.MessageUUID) {
const contextMessageUUID = Context.MessageUUID;
console.log(`Context Message UUID: ${contextMessageUUID}`);
}
res.status(200).send('Message Received');
});
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});
Add or update a webhook URL from this link to a WhatsApp Business Account. Once you’ve done this, you should be able to receive inbound messages.
Send a WhatsApp message to the Plivo number you specified using WhatsApp application.