Scenario is this (I think #2 below is the key question/unknown):
- User1 & User2 have provided a mutual daily scheduled time (and their phone numbers of course) for when they want to initiate a phone call between each other.
- Twilio calls User1 & User2 to initiate the daily conference call each day at the designated time
- Conference call is initiated once both parties pick up.
- Conference call ends after either hangs up.
- FYI: conference call is only a maximum of 5 minutes.
Thanks!
Twilio developer here.
You can definitely build outbound conference calls like this with Twilio.
Building an application like this is a two step process:
First, you need to initiate an outbound call to each participant using the Twilio REST API. This page in our documentation has instructions and code samples for most popular programming languages:
https://www.twilio.com/docs/api/rest/making-calls
When you make that outbound call, you will need to supply a
url
parameter in your POST request tohttps://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Calls.
That URL should point to a part of your application that responds with TwiML, Twilio's markup language. The TwiML you need is pretty simple:
You can find more sample TwiML responses for conference calls in our official docs:
https://www.twilio.com/docs/api/twiml/conference#examples
I hope that helps!