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
2
votes
1 answer

Say the current time and day in TwiML

My grandma has dementia and a programmable landline. She misdoes her medication because she can't remember what day or time it is. I've set up a Twilio service with the idea that she can press 'Time' on the phone to dial the number, and it will play…
2
votes
1 answer

TWILIO REST API Helper Library - Issue with NewtonSoft.Json Version

We have installed the latest Twilio version(5.69.0) in our .NET project (.NETFramework Version is 4.6.2)and updated the following. Microsoft.Identitymodel.Token (Version:6.15.0) System.Identity.Model.Token.jwt (Version:6.15.0) Newtonsoft.Json-…
Agent 47
  • 33
  • 6
2
votes
2 answers

How to Slow Down Twilio's TwiML “Say” Command For Programmatically Making Call From the API?

How can I slow down a code or the entire message content inside the Say tag? Right now by default the speed must be set to x100 or something. You can not understand a word of what the robot is saying. The code that I am using to execute the…
Victor_Tlepshev
  • 478
  • 6
  • 19
2
votes
1 answer

Gather DTMF inputs from user via an outbound call

I have a very simple question about gathering DTMF inputs from users via an outbound call made to them. I am describing the requirement below. Main Requirement I have a python script that makes outbound calls to a particular number. The person…
2
votes
1 answer

Initiate A Call To Multiple Numbers Simultaneously with Twilio

I'm trying to call multiple numbers at the same time right from the start, if someone pickup others will be automatically hang up. The issue is I can only see that feature under TWIML>Dail and to use that feature you need to initiate a call…
Ez0r
  • 180
  • 3
  • 11
2
votes
1 answer

How do I parse the SMS sender's from number and body of what s/he texted to Twilio number via a webhook and node.js?

Hello StackOverflow Friends: The following code works fine, I've tested with nGrok running locally. Two of the requirements I have left and can't figure out are: Capture the phone number of the sender (put in variable) Capture the body of the text…
davos
  • 151
  • 10
2
votes
0 answers

How to Warm Transfer Conference Call using Twilio?

I had read Twilio documentation about call transfer twilioDoc, StackOverflow and a lot of other stuff related to call transfer too. What I had tried is: Step 1. Dial Call from web browser to phone number via javascript params. (call working…
2
votes
0 answers

Using Answering Machine Detection with Twilio Proxy

We're using Twilio Proxy for one-to-one masked communications. We want our users to be able to text and call each other, but have their identities protected. This all works well, except in the case where the call isn't picked up, and the user's…
Gus
  • 1,905
  • 6
  • 23
  • 37
2
votes
0 answers

Twilio XML Validation warning 12200

Our node.js app switched to using a bi-directional stream and since then, we are receiving this warning: Msg "XML Validation warning" line "1" parserMessage " Element 'Stream' must have no character or element information item…
2
votes
1 answer

Need C# code to result in the following TwiML output

Want to nest "Say" instructions inside a gather, but I want to use modifiers like .Emphasis, .Break, and .Prosody on the "Say" instructions. There does not seem to be a way to do this in C#. The resulting TwiML code I want would look like…
2
votes
1 answer

Twilio Client JS-SDK Websocket cannot establish connection

I'm trying to connect with Twilio using the line below: Twilio.Device.setup(token, { debug: true }); I already check the JWT and it is correct however the connection keeps re-establishing logs bellow: Setting up VSP log.ts:80 Initializing…
2
votes
1 answer

Twilio | How can I modify call after X duration of dialed?

Suppose a customer is calling and at the application side staff members(softphone) are busy with some other stuff. I want to play call later text when nobody will answer after X seconds. I've used a timeout attribute of a Dial verb. But that…
Mayank Majithia
  • 1,916
  • 16
  • 21
2
votes
1 answer

Twilio Call Flow Not Continuing After Caller Removed From Queue

Based on the documentation for the TwiML verb, when a caller exits a queue, their call should continue executing the call logic following the that caused them to enter the queue. In my case, my callers enter the queue by processing…
Christopher
  • 885
  • 2
  • 10
  • 16
2
votes
3 answers

TypeError: Cannot read property 'Digits' of undefined in twilio when gathering user input from call

I have used the code from Gather User Input via Keypad (DTMF Tones) in Node.js twilio documentation for getting user input from the call. app.post('/voice', (request, response) => { const twiml = new VoiceResponse(); function…
2
votes
1 answer

How do you pass a custom parameter in Twilio with PHP?

Taking a look from here: https://www.twilio.com/docs/voice/client/twiml The closest I could get was this: $response = new Twiml(); $callerIdNumber = config('services.twilio')['number']; $dial = $response->dial(['callerId' =>…