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

Twilio Gather followed by call forward (Dial) after user input without using another webhook

I'm using the Twilio C# SDK to initiate an outbound call from Twilio, during which user's DTMF input needs to be gathered (Press 1 to be transferred to sales, 2 for support...), and the subsequent action is to forward the call to a designated E164…
thankyoussd
  • 1,875
  • 1
  • 18
  • 39
0
votes
2 answers

Twilio Conversations API || Post-Event URL Be Dynamic to the Conversation SID

I have the Pre-Event Url correct which will send a POST request to add everything i need. But I need to try to get a dynamic url for the Post-Event URL, when I want to view the conversation, for…
0
votes
1 answer

Is there a way to know other user's device type in Twilio video call?

We are building a P2P video call service using Twilio video. Is there a way for one user to know which device other user is using for video call so that we can change designs a bit to support that? For eg, if one user is using Desktop and other user…
0
votes
1 answer

Twilio media stream used simultaneously with Speech to Text (Twilio Say)

I'm working on a voicebot that uses twilio media stream (Google STT), processes the text and gives response back to the user using TwiML Say Object. I'm using an endpoint that is triggered once the user starts calling (status call is…
busy
  • 23
  • 3
0
votes
1 answer

Receive SMS using Twilio and asp.net Webforms

The Twilio documentation provides a guide for asp.net MVC, but not for webforms. I am able to send an SMS message with no problem, but receiving SMS replies is where I am stuck. I have found that it is recommended for webforms users, to use a…
mlg74
  • 520
  • 1
  • 7
  • 27
0
votes
1 answer

TWILIO/PHP - Get recordings between 2 dates with the parent call information

My English is not very good, but I'll try to explain the problem as well as possible. I have to get all the recordings between 2 dates, the problem is that Twilio saves 2 calls, the parent and the child, and when I get the callSid but the child…
0
votes
0 answers

Why aren't my messages sending using Twilio Messaging Service and Twilio Functions?

REPOST: I made a post yesterday looking for a solution to this problem, but I've put another 24 hours into and feel I'm a lot nearer a solution now. The problem I believe I'm having is within the "Send Message to All Contacts" section. I'm running…
0
votes
1 answer

How do I get the day, month, and year from Twilio date object?

Working on a Twilio Autopilot bot that requires age authentication. Right now I'm getting the date from the user and storing as a twilio.DATE object. It is in the format of 2002-04-24. What I'd like to do is get this in the format…
0
votes
1 answer

Need to send SMS to 11K people at once but don't know in advance how much $ to have in balance?

I have a python script which sends to all 11K people an SMS at once, they are from all sorts of countries. I don't want to have money left over in my balance as I won't be doing that again. Problem it's too difficult to estimate the cost as the…
0
votes
1 answer

How to store a list of phone numbers in Twilio, then return one at random?

I'm building a phone service with Studio & Functions where a new user is connected with a random previous user. The intended behavior: User texts the service, receives a response from Studio. Studio passes their number to Functions. Their number is…
deanboysupreme
  • 77
  • 2
  • 12
0
votes
1 answer

Writing Twiml based on user messages

First post on here. Im working on an application in python using the twilio voice api. Id need to be able to create twiml xml data based on user messages. Hence twiml creation and hosting programmatically on the fly. Is there anyone here that can…
0
votes
1 answer

Adding delay between two incoming calls

I am trying to add delay between two incoming calls. eg. worker get first incoming call and he rejects it. then second incoming call should only assigned to the same worker after certain timeframe(eg. 2 sec).
0
votes
1 answer

How to add a screen sharing feature on a video call of Twilio?

I implemented a video call using Twilio by react as frontend and Ruby on Rails as backend. now I wanna add screen-sharing on that. Have I to change my backend code? How to add a screen-sharing feature on a video call? When I enable screen sharing in…
0
votes
1 answer

Twilio: Send SMS from connected account

Here's what I'm trying: curl -X POST -d "Body=Hi there, this is a test message from cURL" -d 'From=+1aaabbbcccc' -d "To=+1zzzxxxyyyy" "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_CONNECTED_SUBACCOUNT_SID/Messages" -u…
mpen
  • 272,448
  • 266
  • 850
  • 1,236
0
votes
1 answer

Any way to setup Alerts for Twilio SMS messages by excluding a group of errors, rather than by including each error specifically?

I am working on a project that encounters a series of errors everyday such as user unsubscribed, etc. (About 4 or 5 different error codes everyday) These errors are inconsequential to the management and can be ignored. Any way to configure the…