Posts tagged with messagebird

I am using WhatsApp Business API and in conversation, I want to know the message I have sent has been read or not by the receiver.

I have got response as 'sent', 'delivered' and other but not the 'read'.

I also have checked on my number (WhatsApp Privacy Setting) where I have set "Read receipts" enabled, if this was the case.

Could any one please help me to sort it out?

How to test?

get started from this url: https://developers.messagebird.com/docs/whatsapp/getting-started/

var messagebird = require('messagebird')();

my code

messagebird.conversations.reply(data.id, {       'type': 'image',       'content': {         'image': {           'url': 'https://api.faridblaster.my/test',           'caption': 'Bocaahhh3332'         }       }     }, function (err, response) {       if (err) {         return console.log(err);       }     }); 

the result show me

Expected Output should be

status: 'delivered',

Thanks in advance!