messagebird-nodejs
messagebird-nodejs copied to clipboard
The open source Node.js client for MessageBird's REST API
``` const API_KEY = ''; const messagebird = require('messagebird').initClient(API_KEY); var params = { 'originator': 'Test', 'recipients': [ '+918875342870' ], 'body': 'Hello, world!' }; messagebird.messages.create(params, function (err, response) { if (err)...
Bumps [jose](https://github.com/panva/jose) from 4.9.2 to 4.15.5. Release notes Sourced from jose's releases. v4.15.5 Fixes add a maxOutputLength option to zlib inflate (1b91d88), fixes CVE-2024-28176 v4.15.4 Fixes types: export GetKeyFunction (#592)...
Add the optional parameter `maxAttempts` to the type definition of `VerifyParameters`
Hey all, We have a paid plan, and an approved A2P 10DLC number through MessageBird. When I tried to send a group MMS – one that creates a group with...
Your api is validating an empty string as valid: ``` { verificationId: '4d1e1f430aeb4b6b9f3c51e3b92ad541', code: '', err: null, response: { id: '4d1e1f430aeb4b6b9f3c51e3b92ad541', href: 'https://rest.messagebird.com/verify/4d1e1f430aeb4b6b9f3c51e3b92ad541', recipient: , originator: , type: 'email', reference:...
The interface currently specifies just the conversation ID. But the API for replying to a conversation ([in this example](https://github.com/messagebird/messagebird-nodejs/blob/master/examples/conversations.js#L44-L54)) does not include the ID. Related to #86
https://github.com/messagebird/messagebird-nodejs/blob/2d8b7de16c6c4c24829bc009dfa29c59a68ab189/types/index.d.ts#L240 When calling `MessageBird.conversations.listMessages`, the call doesn't work if a contactId is passed, but works when the conversationId is passed. I believe this behaviour is correct, but the parameter name...
{'code': 2, 'description': 'Request not allowed (incorrect access_key)', 'parameter': 'access_key'}
The optional parameter `webhook` is currently missing from the type definitions.
At the moment that I send a message via template what's app, the returning contact id is available only on https://contacts.messagebird.com/v2/contacts If I want to read a contact using this...