All is using cell phone, no soft phones.
I am trying to created a flow where a customer calls in, All the agents that are available will have their phone ringing. The first agent that answers, all other dials are disconnected. Later, during the call, the agent will need to add one or more other agent to participate in the call.
As far as I can see the response to the customer call should be a Twiml on the lines:
<Dial><Conference>My Conf</Conference></Dial>
But what should I add to this so it calls (for example) three more agents, and hangup on the other agents after the first one answers? Something like this (this does not work):
<Response>
<Dial><Conference>My Conf</Conference></Dial>
<Dial callerId="+1888XXXXXXX">
<Number>111-987-6543</Number>
<Number>222-987-6543</Number>
<Number>333-987-6543</Number>
</Dial>
</Response>