Reputation: 351
I have a phone number and a SIP domain on Twilio. So when I receive a call on phone number all the SIP endpoints must ring simultaneously and once the call is received by any SIP end point, the ring to other numbers must stop. I want more or less a configuration of a call center. I am able to call a single SIP endpoint but not multiple.
Secondly If multiple simultaneous rings to SIP end points are not possible through twilio, then I want to use Asterisk, so please guide me is it possible using asterisk to receive a call on one number and forward it to multiple SIP end points.
Upvotes: 0
Views: 259
Reputation: 15259
Asterisk:
exten => 600,1,Dial(SIP/100&SIP/101,,o)
; call to 600 to get two calls to 100 and 101 endpoint.
Twilio:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial>
<Number>877-555-1212</Number>
<Number>877-999-1234</Number>
<Number>877-123-4567</Number>
</Dial>
</Response>
Upvotes: 1