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
2 answers

Configure a Twiml Bin to a Twilio number using PHP

How can we configure a Twiml Bin to a Twilio number using PHP (Laravel)? I am able to buy a number, but I can't figure out how to assign a Twiml Bin to a number that we have bought. I am able to manually configure it from the Twilio Console. Twilio…
0
votes
2 answers

Cannot put caller into conference

Aim: Put incoming calls into conference. What I would like to achieve is: generate call signal to all available agents put an incoming call into conference when agent picks up, its connected to the conference On an incoming voice call I have this…
Ulterior
  • 2,786
  • 3
  • 30
  • 58
0
votes
1 answer

TwiML Exporting to Sinatra, but not actually sending SMS Messages

I am having an issue with outbound SMS thru TwiML Message functions. I am able to see my post on my Sinatra server session here: == Sinatra (v2.0.0) has taken the stage on 4567 for development with backup from WEBrick [2018-01-24 15:30:55] INFO …
nbkkb7x
  • 131
  • 1
  • 1
  • 8
0
votes
2 answers

Special Characters in TWIML verb

I have a verb I need to read in spanish. However, the Twilio .Net parser is failing with Invalid character in the given encoding. The line that's failing (edited for brevity) is: > cita para la instalación de…
0
votes
1 answer

Twilio delay call connection until dialed number is answered

I want my Twilio number to continue to ring (without being answered by Twilio) until a number I want the call forwarded to answers. According to the docs, the pause verb when used first in the response, delays pickup of incoming calls. Is there a…
charsi
  • 2,917
  • 22
  • 40
0
votes
1 answer

Passing phone input via Twilio

I'm working on a basic Twilio web application using Java and the Spark Java framework. I'm trying to have the user enter a number as input after the initial prompt through a Gather verb and then process that input. So far, I am able to call my…
Mzaq
  • 5
  • 2
0
votes
1 answer

How to create a valid TwilioML response object in node.js

I have a twilio webhook and I'm trying to structure the response with accordance with twiloML, I get an error response in twilio logs of 12200 The provided XML does not conform to the Twilio Markup XML schema. Please refer to the specific error…
Shachaf.Gortler
  • 5,655
  • 14
  • 43
  • 71
0
votes
1 answer

Call Twiml Object in Codeigniter - Twilio service

I am integrating twilio service in codeigniter. But currently, I don't know how to call Twiml object. In raw PHP, I can just code like this: use Twilio\Twiml; $response = new Twiml(); But in codeigniter, I can only call the library twilio service…
Tedxxxx
  • 238
  • 3
  • 19
0
votes
1 answer

SMS TWIML BIN - How to retrieve name from phone numbers?

I am using this script for group notification from Twilio number 001: {{From}}: {{Body}} So when I send a sms from my phone to the 001, it will send a message to +120000000007 It…
0
votes
1 answer

Twilio Called Id

I have the following method which is hit when on my Twilio number is called: [HttpPost] public ActionResult Merge(string from, string to) { string outgoingPhoneNumber = "+1xxxxxxx"; var response = new TwilioResponse(); …
JoeMV
  • 23
  • 6
0
votes
1 answer

Replying back with Multiple MMS Images Twilio through TwiML

I have the following function export function incoming_message(event, context, callback) { var qs = require('qs'); var util = require('util'); const MessagingResponse = require('twilio').twiml.MessagingResponse; const response = new…
Joseph Astrahan
  • 8,659
  • 12
  • 83
  • 154
0
votes
1 answer

Getting error while executing python program to get a caller to conference call from twilio server

I wrote a python program as to [Ph Num 1 <-> Twilio Server <-> Ph Num2 ] [- Send a Message from my ph number (Num 1) containing another phone number(Num 2) to twilio server - twilio takes the number (Num2) and calls me back (Num1) (saying as you are…
rob
  • 1
  • 1
0
votes
2 answers

Is there a Twilio webhook that informs me of users who hang up before being queued

I have an 'incoming call' web-hook for a contact centre application that I'm working on and it basically speaks a few words to the caller ("Welcome to x company etc..") and then adds them to a call queue. I'm able to add further web-hooks for the…
andrewm
  • 2,552
  • 5
  • 33
  • 63
0
votes
1 answer

Twilio c# TwiML not dialing number. Saying it instead

I'm setting up masked calling. When I get the following TwiML response after calling the masked number, it isn't dialing the number that I'm specifying. It's just saying the number instead after saying the content of the say Here is the TwiML
James
  • 4,146
  • 1
  • 20
  • 35
0
votes
1 answer

How to configure Twilio send sms with callback url?

We have a requirement to configure callback URL with a custom parameter. It's possible to configure the callback http url in Twilio console. But we have to configure the callback url when we send sms so that when the user replies, twilio will make…