Posts under category Meta & Facebook

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!

The WhatsApp Business API does not have a ref parameter (like Messenger does, for instance) which allows the receiving application to know where a given WhatsApp user came from.

Conversations with a business over WhatsApp are usually initiated via a link -- and the only fields that can be supplied to the wa.me link are the number and text fields (source).

Is there a way that I can get around this restriction, and add a ref parameter (e.g. ref=google-ad) to the link?