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!

