Questions tagged [twilio-twiml]

For anything related to Twilio's TwiML (Twilio Markup Language)

For anything related to Twilio's TwiML (Twilio Markup Language)

709 questions
0
votes
1 answer

Twilio forwarding calls to Twilio sip trunk with custom headers

At the moment i have such configuration mostly in Twilio environment. The sip trunk seems to be properly configured between Twilio and Asterisk - origination sip URI like sip:77.79.xxx.yyy - i have number associated with this trunk 48123455555 When…
0
votes
1 answer

How to make twilio outbound call types in nodejs

i found two examples on making an outbound call using twilio , and i was not clear about the difference among them 1] client.calls.create({ url: 'http://demo.twilio.com/docs/voice.xml', to: '+14155551212', from:…
karan roy
  • 53
  • 7
0
votes
1 answer

Hunt Group for Twilio, using Twilio Functions. (aka FindMe )

I am trying to set up a hunt group with Twilio Twiml Do I have to set up a different twimlbin for each number in the hunt group? Or is there a way to join all this together into a single Twimlbin? Twimlbin 1:
Marcus
  • 675
  • 2
  • 8
  • 24
0
votes
0 answers

Create Hunt Group with Twilio Twiml

I am trying to create a basic hunt group using Twiml. pseudo code: Dial 'Number1' for 'timeout=10 seconds' If 'DialCallStatus' not 'completed' then Dial 'Number2' for 'timeout=10 seconds' If 'DialCallStatus' not 'completed' then Dial 'Number3'…
Marcus
  • 675
  • 2
  • 8
  • 24
0
votes
1 answer

Issue generating correct TwiML response (PHP)

I'm new to PHP and development in general(come from a VOIP background). I've been learning for a few months now. I'm not sure what I'm doing wrong here but I'm having an issue receiving faxes from Twilio. I can see that Twilio is sending the…
0
votes
0 answers

Ruby api for Twilio two-way sms not working

Below is the webhook for twilio sms two-way messages. Whenever I reply to an sms from the phone, the below function gets called and prints from, message and messageSid, but it is unable to send the twiml response back to the phone number. I can't…
BigDataLearner
  • 1,388
  • 4
  • 19
  • 40
0
votes
1 answer

Call forward to my personal VM after the ring got stopped

When an inbound call reaches my system it is forwarded to my personal number using TwiML. So once the ring stops (missed call) it just hang up the call. Is there any way to reach this call to my personal VM after the ring got stopped?
Nithin Dev
  • 421
  • 10
  • 29
0
votes
1 answer

Formatting XML for Twilio Response

I am attempting to receive a fax in my Laravel app, but I can't seem to format the XML properly. Since I am just setting this up for the first time, I tried to emulate the basic how-to in the Twilio Quickstart guide. Using the Twilio dashboard, I…
retrograde
  • 2,979
  • 6
  • 28
  • 54
0
votes
1 answer

Twilio: cycle through Simulring until human answers

I would like to have my Twilio number dial multiple of my off-site technicians within my company simultaneously and only connect the caller to a human (aka, block voicemails from grabbing the call). I've got the Simulring working great, but the…
sdpetersen
  • 23
  • 2
0
votes
1 answer

Twilio voice recording in ASP.Core

I'm building a new application and one of the its function is communication between seller and customer. For this reason I want to use Twilio API. So let's imagine we have two person: seller and customer, and they are going to communicate. My idea…
Valentin
  • 31
  • 1
  • 4
0
votes
0 answers

Twilio making call using Dll version 5.3

If we Use the Url as per the Sample Code,it works fine.Here is the Url Used in sample code : ("http://demo.twilio.com/docs/voice.xml") As per the Old Twilio Dll version 3.4 Were making Use of the twimlet Echo to make call…
rashmi
  • 1
  • 1
0
votes
1 answer

Twilio call drops when putting call on hold or pressing any digit

When I put Twilio call on hold or press any digit Twilio drops the call. Here are the Twimls I am returing. When Phone Ringing:
DRP
  • 91
  • 1
  • 1
  • 6
0
votes
1 answer

How to dial two numbers using Twilio.Twiml .net helper library

I am using the Twilio.Twiml library for C# / .NET I'd like to dial two numbers at the same time, e.g., +12125551212 +12125553333
user3079993
  • 153
  • 1
  • 9
0
votes
1 answer

Open new (popup) window to answer Twilio call

I'm using the Twilio JavaScript SDK to place and receive calls in the browser. As part of this I have a requirement to make and receive calls in a new popup window. This is so that a user can continue browsing the site without disconnecting the…
andrewm
  • 2,552
  • 5
  • 33
  • 63
0
votes
2 answers

how to serve Twiml Nodejs

I am having a hard time create my TWIML files with nodejs. I am creating outbound calls and they work with a static XML file or twiml bin but not my endpoint. do you know what is wrong? app.post('/twiml-generator', function(req, res){ var name =…
bannerboy
  • 43
  • 3