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

I want to respond to a twilio SMS with a simple text and at the same time forward the SMS to some emailId

Configured a webhook URL which calls the below code ::: String body = request.getParameter("Body"); String fromNumber = request.getParameter("From"); String message; Message sms = new Message.Builder().body(new Body(message)).build(); …
pa_One
  • 35
  • 1
  • 2
  • 11
0
votes
1 answer

Msxml2.XMLHTTP does unwanted URL encoding translation?

I'm using CitectSCADA's CitectVBA environment to make a POST request to Twilio's Twimlets server, via an Msxml2.XMLHTTP object. After discovering some of the differences between this and Office's VBA v6, I did manage to get the thing to make a POST…
Ben Seymour
  • 76
  • 15
0
votes
0 answers

Get time stamp on Twilio app unit url

I noticed that Twilio does not send a time stamp on the unit url of a phone voice app. Where can I get this from that is not the rest api or the status call back url. Why no time stamp on all webhooks?
ecorvo
  • 3,559
  • 4
  • 24
  • 35
0
votes
1 answer

Is it possible to modify live call statusCallback value?

Is it possible to modify the statusCallback, statusCallbackEvent and statusCallbackMethod of the live call ? I've used this article as a reference https://www.twilio.com/docs/voice/modify-live-calls In the article, it said you can POST to update…
Kawin Aur.
  • 129
  • 1
  • 8
0
votes
1 answer

Twilio TWIML nodejs gather sample code control flow

I was checking this sample on twilio docs (v2.x but v3.x also is similar and my question won't be altered). // This example uses JavaScript language features present in Node.js 6+ 'use strict'; const express = require('express'); const twilio =…
rahulserver
  • 10,411
  • 24
  • 90
  • 164
0
votes
1 answer

Why do I get a list of undefined conferences from client.conferences.each()?

Running a Node/Twilio app on Heroku. I want to put a participant into a conference, and then get information about the conference that the participant is in. Here is how I return the Twiml that puts the participant into the conference: //response…
sigil
  • 9,370
  • 40
  • 119
  • 199
0
votes
0 answers

Voicemail Implementation for Incoming calls

I know that voicemail is implemented via the RECORD twiml verb, but I want it run conditionally depending on whether the call was declined, not answered. Is this doable?
Rajdeep Sharma
  • 463
  • 1
  • 5
  • 9
0
votes
0 answers

Pass arbitrary parameters to dial (client) call

Use Case: We have a simple menu built in twiml which asks the language of the user (one of 3 languages possible). Then we redirect them via Dial and Client to one of our customer support people (most customer support people speak at least 2…
Nathan Samson
  • 11
  • 1
  • 2
0
votes
1 answer

How long would a message take to say

In the twilio API is it possible to figure out how long a message is going to take? My Requst come from that I need to figure out if a verbal message has been said. a API endpoint to get the time of a special Twiml or asking on a call if it did all…
0
votes
2 answers

Twilio Studio - Access DTMF Digits from a returned by a function?

Is there any way while inside a Twilio Studio Flow to access Digits from a TwiML Gather that has been returned from a function inside the flow? I am using Twilio Studio to create a rather complex call flow. At one point in the flow, I need to…
Andrew
  • 3
  • 2
0
votes
2 answers

Twilio send sms to a list with 100+ numbers. Twilio throwing 11200 Error

I have made a controller that sends a message to a list specified in an incoming message. When I'm finished sending out all the messages, I want to return a TwiML response. However, if the list is too big it looks like Twilio is timing out. If the…
0
votes
0 answers

How to set the From identifier for Twilio IVR incoming calls?

From identifier for Twilio IVR incoming calls get logged as "Anonymous". How can I set the From identifier for Twilio IVR incoming calls ?
Fahad
  • 41
  • 1
0
votes
2 answers

Twilio Programmable Voice isn't working

When i try to pass param from my application using [TwilioVoice Call] method i am not able to get those param on twiML application. but when i try to pass same data from POSTMAN with FormData its working fine and also successfully able to create…
PinkeshGjr
  • 8,460
  • 5
  • 41
  • 56
0
votes
2 answers

Using Twilio Python to Get and Set Cookies

The definitive guide to Twilio conversation tracking uses outdated code as twiml no longer has a method Response(). Is it still possible to track conversations with cookies? from flask import Flask, request, make_response from datetime import…
Max D.
  • 11
  • 1
  • 4
0
votes
1 answer

Nest Twilio commands on ASP.NET Core 2

So I have an application in ASP.NET Core 2 that uses the Twilio SDK to return Twiml from many endpoints. The thing that I haven't found any documentation on is how to nest commands to get a result like this
Rene M.
  • 103
  • 1
  • 9