Questions tagged [twilio-programmable-voice]

Twilio Voice allows you to make, receive, and monitor phone calls around the world using a robust API.

195 questions
1
vote
1 answer

Adding extra information to the Twilio POST response

Is there an attribute I can add to the client.calls.create({ method which would allow me to add extra information to the request body that Twilio will post in the callback URL? Something like this: client.calls.create({ method:…
1
vote
0 answers

Send digits to an incoming twilio call with twiml after the call is connected (during the call)?

This question is almost the same as this one (Can I send digits to an incoming twilio call with twiml?) The difference is that I want to hear who is calling party during incomming call before deciding to send digits to the calling party. E.g. a…
Rad
  • 933
  • 1
  • 15
  • 32
1
vote
0 answers

How to make a call to multiple clients and how to add one of them into conference call in twilio

Client A make a calls to Client B,C,D,E simultaneously if one of them picks a call we have to end up a call to remaining of them.later we if we want to add Client X we can add them into a conference call.like this i have to do.but the thing is it is…
1
vote
0 answers

make a call from twilio subaccount(makeCall)

I am using twilio voice-quickstart-ios. Currently i am trying to make call from subaccount using twilio REST API. Here is my makeCall endpoint exports.handler = function(context, event, callback) { console.log("event :" + JSON.stringify(event)); …
A_Rush
  • 368
  • 3
  • 14
1
vote
1 answer

is that possible to add one person from multiple calls in twilio?

I am developing an application,which is first make a voice call to the all the customers simultaneously.but call will connect to the only one person first who picks the call.later we wanted to add third person into the conference.is it possible in…
1
vote
0 answers

deviceNotReady error : "Registration failed" react-native-twilio-programmable-voice

I am working on react native application and want to integrate the Phone masking feature like Uber do. I have choosen Twilio Phone Masking for this. I have used react-native-twilio-programmable-voice package. I have integrated this using this link::…
Archana Sharma
  • 1,953
  • 6
  • 33
  • 65
1
vote
1 answer

How to use twiml to connect calls

As given in link https://github.com/twilio/voice-quickstart-android#bullet5, we need to create TwiML application and voice Request url should be set for e.g. https://twiliodev.mycompany.com/makeCall to make call. Then what should be written in…
Giru Bhai
  • 14,370
  • 5
  • 46
  • 74
1
vote
1 answer

Twilio VOIP VoiceCallBack Status issue

When Callee has no internet and caller place call, ringing volume play on caller side and at server Status CallBack Request following status flow occur : 1.Initiated 2. Ringing 3. no-answer So the question is why Ringing callback status occur while…
Giru Bhai
  • 14,370
  • 5
  • 46
  • 74
1
vote
1 answer

Access Denied when added participant to conference in Twilio Voice

I have 2 endpoints in my api, one to create a Voice conference and another one to add a participant to a conference. The first one is the following and works correctly. module.exports.call = function (req, res) { let name = 'conf_' +…
Borjante
  • 9,767
  • 6
  • 35
  • 61
1
vote
1 answer

Showing Dominant Speaker in the primaryView

How to display the dominant speaker in the primary view in the quickstart application of Android . https://github.com/twilio/video-quickstart-android/tree/master/quickstart Thanks & Regards Sylendra Edit Added code: public void…
1
vote
1 answer

Make an outgoing call to a number and listen for responses

I would like to initiate an outgoing call from twilio to a number provided by a service like nexmo and be able to listen to the response. Based on the voice message back from the receiver, i would like to determine my response I have gone through…
JerryK
  • 201
  • 1
  • 11
1
vote
1 answer

How can I upgrade an existing call to a conference without losing the original participants?

I need to provide my users with the ability to add a third person to their call dynamically. I know how to find the parentSid and the childSid of the call I'd like to transfer, but as soon as I update one of these sids to a twiml that contains the…
reddiky
  • 172
  • 2
  • 11
1
vote
1 answer

How to detect Touch-tones (DTMF) in a Twilio video room

After following this document I can successfully add PSTN callers to a video room (Small Room type). What I haven't been able to do is to detect DTMF tones from the person calling in. I tried two different approaches, both have failed 1) The one…
Hilikus
  • 9,954
  • 14
  • 65
  • 118
1
vote
1 answer

Twilio: Receive multiple incoming calls on the same Twilio number in the browser at the same time

I have implemented Twilio Client for the in-browser calls using PHP/Laravel and Twilio Client JS SDK. The implementation is working fine I can make the call from the browser and can even receive a call in the browser. Now, I want to show calls…
1
vote
1 answer

Twilio Speech Recognization: Increase speech pause time when speechTimeout='auto'

I have set speechTimeout to 'auto', which means Twilio will stop speech recognition when there is a pause in speech. But the pause time is very less and speech recognition stops even if there is a small gap in the speech. Is there any attribute to…