messagebird-nodejs
messagebird-nodejs copied to clipboard
The open source Node.js client for MessageBird's REST API
Hi there, I'm getting a "TypeError: Failed to fetch" error when querying any endpoint on the `https://conversations.messagebird.com/v1/`. I'm most interested in `https://conversations.messagebird.com/v1/send`. Using Postman, my request gets executed perfectly. Using...
Am sending WhatsApp messages via API using Node js SDK ( Inbox )
What i'm trying to achieve: ``` ---message 1--- Hello! Welcome to my Coffee shop, check our menu: ---message 2--- Hot Drinks: - Mocca... ---message 3--- Cold Drinks: - Frappe... ```...
I've been trying to fetch messages by specified originator. But the filter doesn't seem to work at all. However this works fine in API endpoint query params. ``` const findMessages...
const messagebird = require('messagebird')('', null, [ 'ENABLE_CONVERSATIONSAPI_WHATSAPP_SANDBOX', ]); messagebird.conversations.reply( '', { type: 'interactive', content: { "interactive": { "type": "list", "header": { "type": "text", "text": "What you would like to do...
The last days we get (a lot of) errors while using the client in our production system. Before that everything was working fine. We're using client version 2.13 and the...
It seems that not all the types are defined correctly. Per example, [this type](https://github.com/messagebird/messagebird-nodejs/blob/master/types/conversations.d.ts#L318-L321) does not correspond to [this example](https://github.com/messagebird/messagebird-nodejs/blob/master/examples/conversations.js#L44-L54). Am I missing something? Or are they currently not updated?
I'm using the API to retrieve message for a specific recipient phone number : ``` messagebird.messages.list({limit: 200, direction: 'mo', type: 'sms', recipient: phoneNumber}, (err, response) => { if (err) {...
Hi, I am trying to set up the webhook for SMS status report, and I have tried the example setup in the docs. I am able to receive a GET...
Promises
Is promises support on the roadmap for this lib?