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

Twiml Outbound call

We have a very basic test project using Twilio API. Everything is working except this simple scenario: var call = CallResource.Create( url: new Uri("https://handler.twilio.com/twiml/EHXXXXXXXXX"), to: to, from: from I am…
0
votes
1 answer

How to pass in a custom parameter to TwiML Bin?

I have some issues trying to pass a custom parameter to TwiML Bin. See attached pictures. Everything works except the paramter. Any ideas of what I am doing wrong? Setup:
0
votes
1 answer

GATHER verb are not interpreting small/simple words, only phrases

i have a Twiml that return a GATHER verb, but when i answer in the phone with just one simple word, like "sim" (Brazillian word for "yes"), Twilio do not transcript anything and just hangup the call because of the automatic timeout. Anyone with the…
costamatrix
  • 670
  • 8
  • 17
0
votes
1 answer

Twilio send a voice message if user doesn't answer, in an outbound call

I am new to using twilio. I am using twilio to make calls from browser to phone. In the browser side I am using twiml Device to connect to the call. Twilio.Device.connect({ phoneNumber: phoneNumber, userId: id }); In the nodejs server side I am…
anjuc
  • 159
  • 2
  • 10
0
votes
0 answers

Twilio/PHP - How do I properly encode and decode URLs?

I have a variable: $name = urlencode('é'); which is being called by Twilio: array("url" => "example.com/test1.php?name=$name") In test1.php, my TwiML looks like:
Sam96
  • 1
  • 2
0
votes
3 answers

TwiML Sip only dialing the first one

I am trying to get all of our customer care team's phone's to ring on inbound call's using twiml, but it only ever ring's the first one, Both test phone's are registered through twilio's Sip Domain, and depending on which one is first, that is the…
Tim Holum
  • 697
  • 1
  • 11
  • 24
0
votes
1 answer

Accessing Twilio TranscriptionText in a simple PHP application

I need to retrieve the transcription of a recording done with the Record Twiml verb but I can't get it to work. Here's what I've tried: 1. call.php
0
votes
2 answers

Twilio - how to maintain a conversation when responding to a call with a webhook

When I respond to a Twilio call with a webhook how do I wait for a response? I'm using node.js. I can't seem to find it in the docs. Sorry if I missed it. What I'm looking for is a short question/answer session. Respond with a question - then…
Bela Vizy
  • 1,133
  • 8
  • 19
0
votes
1 answer

Twilio api play message before call hangup

I am hanging up a call like this(java): Call.updater('somesid').setStatus(Call.UpdateStatus.COMPLETED).update(); I would like to play a message(not via some audio file, but via the twilio 'say' verb) before this call is ended. How do I…
rahulserver
  • 10,411
  • 24
  • 90
  • 164
0
votes
1 answer

Outgoing call from Twilio is not working in Laravel 5.5

I'm new to Twilio. I'm using Twilio for phone verification of my app. I'm using Laravel 5.5 for the backend & APIs. I've successfully sent the SMS to phone. I'm getting the call from Twilio but it says an application error. It doesn't read what I…
0
votes
1 answer

How to implement Twilio Conference HangUpOnStar in C#

What would the equivalent of this Twilio TwiML be in C#? I'm most interested in implementing the hangupOnStar in C# and passing the call to another URL.
Nick
  • 13
  • 3
0
votes
0 answers

Twilio Conference Moderating

We are implementing ServiceNow + Twilio and finding it rather difficult to accomplish what I think should be a basic thing. With AT&T conference calls, users are able to *6 to mute/unmute themselves. We are also able to see who is talking via…
0
votes
1 answer

change Twiml response message

I have created application and i am using twilio to make outbound calls. But, whenever i make call i have same XML document with me that has static Hello, your account is deleted. but this time i want to add parameters in it too. for example Hello,…
0
votes
1 answer

Use AMD feature in Twilio with Dial feature

I'm building a system to allow sales representative to call from PC to their customer on phone. I'm using Dial feature of twilio: var callerId = ConfigurationManager.AppSettings["TwilioCallerId"]; var response = new VoiceResponse(); var dial = new…
Milind Anantwar
  • 81,290
  • 25
  • 94
  • 125
0
votes
1 answer

Twilio speech recognition unable to record the speech result in c#

I'm trying to write an app with Twilio programmable voice to be able to collect both speech and digits from customer. my code is getting the digits but not responding to the speech result. By the way in the latest version of Twilio, 'input'…
SAG
  • 60
  • 5