# Call Forward to Multiple Numbers using Twilio

In this post, I'm going to share a small snippet on how you can easily forward incoming calls to multiple phone numbers using your Twilio number.  There are multiple ways you can do this. For our situation, I am using Twilio TwiML Bin to make the code. 

## Diagram


![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1660367352805/LDErmPIZN.png align="left")


## Code

```
<?xml version="1.0" encoding="UTF-8"?>
<Response>
  <Dial>
    <Number>+1-416808XXXX</Number>
    <Number>+1-437702XXXX</Number>
  </Dial>
</Response>
``` 

Here, when a call get's to your Twilio Number, Twilio invokes a function to dial provided numbers.


## Steps 

- Firstly, make sure that you've at least a Twilio number (You can get 1 from [here](https://www.twilio.com/phone-numbers)) 
- Open TwiML Bin, if it's not showing on your sidebar, click Explore Products -> Select TwiML Bins ([https://console.twilio.com/develop/explore](https://console.twilio.com/develop/explore))

As you can see I used the name: Call Forwarder

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1660368144727/1Ko9S14Wu.png align="left")

- Copy & paste the above code to your new TwiML Bin.

- Copy the URL from the TwiML Bin page.

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1660366339619/T0HtCujb4.png align="left")

- After that, click on Phone Numbers->Active Numbers and select Call Forwarder from the *A CALL COMES IN* field 

- Select HTTP GET from the drop down. 

- SAVE 

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1660368351851/QK48ydYyD.png align="left")

Voila. That's it! 

Now, when you ring your Twilio Number you'll get incoming calls to other numbers. 

Please share this post if you think it's going to help someone.

Let's connect,

- [Follow on Twitter](https://twitter.com/themakeinfo)
- [Checkout our YouTube Channel](https://www.youtube.com/channel/UCIEjc-fjKyJ0MNZhK94Ehcw)
- [Makeinfo Products](https://www.makeinfo.co/)

