Trying to call an invalid number I found that when we use the Dial as normal to call a number like:
<Response>
<Dial>
<Number>3134610537</Number>
</Dial>
</Response>
or
<Response>
<Dial>
3134610537
</Dial>
</Response>
we can hear the error message from the provider telling as that the number is invalid or is not longer on service.
But when we use the url parameter inside of the Number tag we don't get that message:
<Response>
<Dial>
<Number url="http://a.url.here/">3134610537</Number>
</Dial>
</Response>
I see the same problem using the REST API.
Why is that? And when does it happen?
Dial should be consistent with the REST API call, thought.