Questions tagged [messagebird]

Messagebird provides APIs and tools for seamless customer communication for businesses across the globe. There are helper libraries for the paid and are available on Github

Documentation

SDK

40 questions
0
votes
0 answers

How to send SMS via MessageBird API

I am currently follwing MEssageBird sms documentation here https://docs.messagebird.com/api/channels-api/supported-channels/programmable-sms/sending-messages I am using restsharp and making an httppost request and I get an error from the API.…
Master
  • 2,038
  • 2
  • 27
  • 77
0
votes
0 answers

Recipient error while using MessageBird SMS API in nodejs

I am trying to send message on the mobile number using Messagebird but getting the following error: statusCode: 422, errors: [ { code: 9, description: 'no (correct) recipients found. Note: during your test period you can only send…
0
votes
1 answer

Getting error while Sending SMS on phone number using MessageBird

The problem is while sending the test SMS I receive an error in the first line of the code and the error is require(...) is not a function: The code is given below: const messagebird = require('messagebird')('
0
votes
0 answers

messagebird not sending whatsapp message

I am using below code send whatsapp message. This is messagebird code. response coming success but, i am not receiving any messages in whats app. curl -X "POST" "https://conversations.messagebird.com/v1/send" \ -H "Authorization: AccessKey…
soubhagya
  • 788
  • 2
  • 12
  • 37
0
votes
1 answer

messagebird messages are not being delivered

import messagebird ACCESS_KEY = "" client = messagebird.Client(ACCESS_KEY) message = client.message_create( 'TestMessage', '+91XXXXXXXXX', 'working', { 'otp' : 1234 } ) print(client) I am…
soubhagya
  • 788
  • 2
  • 12
  • 37
0
votes
2 answers

How to send Whatsapp message using MessageBird from Firebase cloud function?

I have installed MessageBird Firebase Extension. I want to send Whatsapp template(template has Button with website link) message from Firebase Cloud Functions. To send a Whatsapp message, I need to create a document in Firebase 'messages'…
0
votes
1 answer

Get recipient's replies with message bird

When I send et WhatsApp message through the back office of my app, I wish to get the user's replies. When I try to to fetch messages from a given conversation, I only get the message sent by me, I don't get the user's replies, nor inbound messages
0
votes
0 answers

How can i send a message from Messagebird to a Group?

I created a flow with messagebird and I want to send a variable from that flow as a broadcast or to a group. but messagebird doesn't allow group messaging. Please can someone suggest roundabout methods or a chatbot that does this even if it means…
0
votes
1 answer

How to use MessageBird SMS with a form in React?

When I use MessageBird with a phone number that was hardcoded, everything goes well. The message is sent correctly and I am satisfied. The problem is when I try to send an SMS with a form where the user needs to enter the phone number. I am using…
robsonsf
  • 21
  • 2
0
votes
1 answer

Firebase MessageBird extension not sending SMS

I am not able to successfully process the sending of an sms through the firebase extension. Attached is the code of my js code to generate the document in the firestore collection, as well as the document created by the extension, where you can see…
0
votes
1 answer

Can not login in messagebird with my account

A few days ago I wanted to try the messagebird service to send SMS. I created an account, they gave me a credit of 10 units and I did tests to send sms, everything went well. But when I recharged my account with 15$, after a few minutes my account…
Gedeon Mutshipayi
  • 2,871
  • 3
  • 21
  • 42
0
votes
1 answer

Messagebird API - not recieving SMS texts

I'm following the Messagebird docs on sending an SMS through the messagebird API. When I run my app and go to the link in postman, I get no errors and "SUCCESS" is console.logged as well as the reponse. However I never recieve a text. When I go to…
tza00
  • 97
  • 1
  • 9
0
votes
1 answer

I would like to return the response of this callback

Small issue in debugging this. I have this piece of code which calls the cloud function. HttpsCallable callable = FirebaseFunctions.instanceFor(region: 'us-central1') .httpsCallable("sendSMStoPhoneNumbers"); final resp =…
0
votes
1 answer

Import could not be resolve after installing the dependency

I'm trying to install de messagebird dependency into my python project. I write into requirements.txt and after I run pip install -r requirements.txt as you can see below: But the pylance was still showing me the error: Then I try to install using…
0
votes
1 answer

Is there a way to programmatically set the webhook URL for inbound SMS on MessageBird?

I would like to programmatically set the webhook URL for incoming SMS on MessageBird instead of using the Flow Builder manually. Thanks Edit: it's for incoming SMS, not conversations.