Reputation: 11
I would like to set up Twilio number so that when dialed, it will dial two other phone numbers and when answered join a conference.
The following TwiML Bin will call two numbers and join conference, however only the first number of the two numbers will join and the second stops ringing.
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial record="true">
<Number>XXX-XXX-XXXX</Number>
<Number>XXX-XXX-XXXX</Number>
<Conference>My conference</Conference>
</Dial>
</Response>
Any way to make both phone numbers ring until answered and join the conference?
Upvotes: 1
Views: 763
Reputation: 10801
You need to use the REST API to place two outbound calls and add them to the conference. You can do that either using the Calls resource or conference participants resource (Create a Participant)
Upvotes: 2