I have a requirement where I need to ring multiple numbers when a person calls the Twilio number. If one of the phones are engaged I want to ring one of the other available phones.
How can I do this?
I can achieve ringing multiple phones using the below code. But the issue is when one of the phones are engaged it takes the next person calling the Twilio number to the voicemail instead of ringing one of the other available phones.
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial>
<Number>NUMBER1</Number>
<Number>NUMBER2</Number>
<Number>NUMBER3</Number>
</Dial>
</Response>
Thank you very much!