0

I'm using Twilio (twiml code) for incoming calls. I need to redirect incoming call to remote SIP ip address. How can I do it ?

user640582
  • 31
  • 5

1 Answers1

0

You could use a TwiML similar to this

<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial>
  <Sip>
    alex@something.sip.us1.twilio.com  
  </Sip>
</Dial>
</Response>

Note: there is more configuration needed, see the answer to How do I forward a Twilio number to a VoIP phone?

Also, this blog post has more information https://www.twilio.com/blog/registering-sip-phone-twilio-inbound-outbound

Alex Baban
  • 11,312
  • 4
  • 30
  • 44