-1

I have a Twilio number that forwards to my mobile phone, and I'd like the caller ID to be suppressed (not see the callers number) and just show the Twilio number. This is so I know the call is coming via the Twilio number. Is this possible?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Ossey
  • 1
  • Okay, but forwarding can be done in multiple ways, and you don't say how is done in your case. Could you post the relevant portion of your code? – Alex Baban Aug 02 '18 at 01:30
  • Thaks Alex. I'm using a TwiML Bin with the following code +44-795-0401-xxx – Ossey Aug 03 '18 at 05:37

1 Answers1

0

It's possible using your Twilio number as the callerId attribute something like this:

Let's say your Twilio number is +44zzzyyyyxxx

<?xml version="1.0" encoding="UTF-8"?> 

<Response> 
  <Dial callerId="+44zzzyyyyxxx">+447950401xxx</Dial> 
</Response>
halfer
  • 19,824
  • 17
  • 99
  • 186
Alex Baban
  • 11,312
  • 4
  • 30
  • 44