Estefania Gonzalez
Estefania Gonzalez

Reputation: 11

Forwarding Twilio numbers

I am still new to Twilio, and I was wondering if anyone knows how I can forward my Twilio phone numbers so that I can receive the calls in my office phone number?

Upvotes: 0

Views: 46

Answers (1)

Jarod Reyes
Jarod Reyes

Reputation: 646

Jarod from Twilio. Essentially you'll just want to point your Twilio number's incoming Voice Calls URL to a new TwimlBin and inside that Twiml Bin you would then forward all calls by responding with the Dial verb, which just dials your office number.

<?xml version="1.0" encoding="UTF-8"?>
 <Response>
   <Dial>
    +1-555-555-5813 
   </Dial>
 </Response>

Hope that helps!

Upvotes: 2

Related Questions