I am joining two callers together by calling the first and then in the URL Response TwiML I am dialing the second number. How can I Say a message to both parties after the second phone has picked up?
How do I Say something after Dialing?
242 Views Asked by darkfrog At
1
There are 1 best solutions below
Related Questions in XML
- Impose component restriction to a series of parsys-CQ
- Wrong xml being inflated android
- Shorten the XSD
- Writing/Overwriting to specific XML file from ASP.NET code behind
- Magento custom block. Can't get block's file
- Layout not shifting up when keyboard is open
- CSV to XML XSLT: How to quote excape
- Getting deeply embedded XML element values
- Saving FileSystemInfo Array to File
- how to apply templates within xsl:for-each
- Spring - configure Jboss Intros for xml with java config?
- Problems with implementing custom actionbar android
- Can Apache Ant be told to cache its XML files?
- Is Log4j2 xml configuration case sensitive?
- How to get a specific node value in XML Pull Parser
Related Questions in REST
- Spring RestTemplate passing the type of the response
- .net rest service with JSON string and consumed with java client
- SuiteCRM how to retrieve all account related contacts
- http status code for failed email send
- cloud foundry - 413 Request Entity Too Large
- Why does PHP add "\r\n" to an empty string?
- WCF Service not accepting multiple body parameters
- How to send Rest GET request that contains "#" value in url parameters?
- Phalcon PHP - RESTful API
- Object of class CS_REST_Wrapper_Result could not be converted to string in CAMPAIGN MONITOR
- purchase individual items and subscriptions in the same PayPal REST API transaction
- Empty Response Received on Android POST Request
- angular load more tweets onclick
- Async vs Horizontal scaling
- Responding to an Office 365 event invite via REST
Related Questions in TWILIO
- Cannot Receive Incoming call on Twilio android Client
- Twilio Rest API Filtering using Coldfusion11
- Service worker does not load mp3 files
- Twilio Receiving SMS codeigniter
- Provide Twilio TwiML in HTTP payload?
- Twilio ValidationCode is not showing up my PHP page?
- How do I receive sms with twilio?
- twilio dynamic voice url number?
- VoIP Setup with Softphones and Twilio backend
- Understanding how twilio manages multiple numbers from same twilio account
- RangeError with Meteor and Twilio Client
- Twilio: pro-actively initiate daily, pre-scheduled conference calls?
- PendingIntent for Incoming call not getting launched for Twilio Android client
- How many times Twilio will try sending texts to a number which has been, out of range, network disconnected?
- TwiML - Can I record an user AND gather keypad inputs in the same call?
Related Questions in TWILIO-TWIML
- TwiML - Can I record an user AND gather keypad inputs in the same call?
- Twilio Queue Sid
- Redirecting a Call to a new Twiml URL
- TWIML for reverse click-to-dial browser plugin
- Access transcriptionText from twilio
- Play music while waiting an answer in TWIML <dial>
- Twilio Rejecting Call Using TWIML Webhooks Using PHP
- How to get newest recording in Twilio?
- How do I do simple conditional calling in Twilio based on time of day?
- How do I have Twilio make a silent call that only sends digits, not voice via mp3/wav?
- twilio queue: python code terminates at SMS message
- Twilio Redirect within a <Dial><Queue> probably not working
- How do I Say something after Dialing?
- Dynamically set Twilio <Dial> timeLimit
- What is the difference between Twilio Sip and Twilio Client?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Twilio evangelist here.
I think this depends on the specific experience you want to give. For clarity, lets define the two callers as Caller A (the initial caller) and Caller B (the person dialed after Caller A dials in).
Option A
So one option could be to Say the message to Caller A before dialing Caller B. Then when you
<Dial>Caller B, set the url attribute of the<Number>noun which lets you give Twilio some TwiML to execute to Caller B before Callers A and B are connected.The downside to this is the parties will hear the message at different times, and you might not want Caller A to hear the message unless they actually get connected to Caller B.
Option B
Another option would be to leverage a
<Conference>. With this option when Caller A dials in you drop them into a Conference instead of Dialing Caller B. Then use the API to make an outbound call to Caller B. When Caller B answers, you drop them into the same Conference as Caller A.Once Caller B is added to the conference you can have Twilio itself call into that Conference and Say something into it. This SO post shows how to Say something into a Conference:
Use Say verb to all Conference participants
Hope that helps.