Hi I'm trying to write some TwiML XML code to dial a number. This is my code at the moment:
<?php
header('Content-type: text/xml');
$callerID = "XXXTWILIONUMBERXXX";
?>
<Response>
<Dial callerId="<?php echo $callerId ?>">
<Number>XXXNUMBERTOCALLXXX</Number>
</Dial>
</Response>
The problem is that when I'm testing it using the TwiML app creation page (where the app SID is found) it hits the TwiML okay but then doesn't dial the number. Thanks for your help