Questions tagged [twilio-api]

Twilio provides a bunch of APIs for services like Chat, Voice, SMS, Fax. Any issues or problem faced related to those APIs, this tag will be used.

The Twilio REST API allows you to develop Chat applications, Applications with SMS, Fax and Voice capabilities. There are separate micro-services (REST API group) and SDKs hosted on twilio site and any issues related to the API and SDK can be tagged using this Tag.

2398 questions
0
votes
1 answer

Can't receive SMS message with Twilio trial account

I have a small project (Express) using a Twilio trial account to send an SMS message to my phone number. But when I use my own message to replace the example string, I can't receive the SMS anymore. This is what I tried: Verified my own number, so…
Kim Ma
  • 1
  • 1
0
votes
1 answer

Send customized bulk SMS with twilio

I want to send different messages to multiple users at once. I read the article here: https://www.twilio.com/blog/send-bulk-sms-twilio-node-js-html but it mentions nothing about sending customized messages. The only difference in my messages is the…
Himanshu Kumar
  • 89
  • 1
  • 10
0
votes
2 answers

Twilio Unable to send fax

Hope you are having a nice day. I am getting following error on twillion fax api HTTP Error Your request was: POST /Faxes Twilio returned the following information: Unable to create record: The requested resource /Faxes was not found Here is the…
0
votes
1 answer

Should I use Caller and Called arguments or From and To in Twilio callback request body

I am receiving the same information in the following POST body arguments from twilio callback requests: Caller and Called From and To I couldn't find any documentation about the first arguments. Are Caller and Called deprecated?
apruden
  • 368
  • 2
  • 8
0
votes
1 answer

How make a direct phone call to exist between two customers using Twilio API

I have this idea where I need to connect customer A (who is hiring) with customer B (who is to be hired) via a direct phone call with just a push of a button, and customer B (who is to be hired) don't want anyone to just have access to his personal…
0
votes
1 answer

how to filter twilio conversations by date

I need to fetch the list of conversations created on certain date e.g 2021-06-22. However curl -X GET 'https://conversations.twilio.com/v1/Services/IS_service_sid/Conversations?PageSize=20' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN returns only a…
rockneverdies
  • 180
  • 1
  • 7
0
votes
1 answer

Replacing to: "phone number" with to: variable

I replaced the phone number in to = " " with a variable and I am getting an HTTP Error message. phoneNumber = +14403943924 message = client.messages.create( to= phoneNumber, from_="+14397829146", …
palantir
  • 11
  • 3
0
votes
0 answers

Problem using IBM Watson Assistant for WhatsApp, The word "undefined" appears from nothing using "Type: Options"

Good morning, The word "undefined" appears from nothing using "Type: Options" on IBM Cloud Watson Assistant for WhatsApp, someone please help me to resolve this issue? thanks!
0
votes
1 answer

How to access Twilio on restriced machine

I'm writing an application to send SMS to my customers and I integrated with Twilio on localhost successfully. But my test environment is restricted machine and can't access to open network. Someone can define domain and when test machine tries to…
İlkay Gunel
  • 712
  • 2
  • 11
  • 24
0
votes
1 answer

Is there a way to make a call from Spring boot API and read out text to receiver?

I can make a call out to a user using Twilio API, the challenge I am currently facing is passing the test API and it reads out the test message to the receiver.
Denis Kisina
  • 350
  • 4
  • 19
0
votes
1 answer

Handle call end in twilio

I am building a conversational voice bot with Twilio and Node.js. Whenever a call ends, I need to send collected data(collected in Twilio autopilot Memory object) to a database. If the user completes the entire question-answer session with the bot,…
Himanshu Kumar
  • 89
  • 1
  • 10
0
votes
1 answer

Is there a way to develop with twilio in VS CODE entirely?

I am working with Twilio and Nodejs. But I usually code in the Twilio console, which I don't like. I am aware of the Nodejs helper library but the execution is highly dependent on Autopilot tasks. So even if I am able to test function in VS Code by…
Himanshu Kumar
  • 89
  • 1
  • 10
0
votes
1 answer

How to stop a Twilio Autopilot Dialogue on a custom chat channel programmatically?

I am implementing end-to-end tests for a Twilio Autopilot bot. I start the conversation with the bot using a custom chat channel, by making an HTTP POST to this…
Daniel Gabriel
  • 3,939
  • 2
  • 26
  • 37
0
votes
1 answer

Twilio API mocking unit testing in Nestjs using Jest

I have this twilio.service.ts file. I want to write a unit test in twilio.service.spec.ts for two cases in which the verification OTP has been sent successfully or failed with missing parameters. twilio.services.ts: async startVerification( …
kartik tyagi
  • 6,256
  • 2
  • 14
  • 31
0
votes
1 answer

Delayed notification of incoming calls from Twilio

Will notifications be delayed? I'm using Firebase to notify me of incoming calls. In rare cases, notifications appear to arrive late in the app. I want to detect whether the incoming call notification was successful. Is there an API for…