Hi
is there any way to get the total sms remaining amount through the PHP API?
Thks!
$protocol = "http://";
$url = "api.esendex.com/v1.0/accounts";
$username = "myuser";
$password = "mypass";
$cred = sprintf('Authorization: Basic %s',
base64_encode("$username:$password") );
$opts = array(
'http'=>array(
'method'=>'GET',
'header'=>$cred)
);
$ctx = stream_context_create($opts);
$fp = fopen ( $protocol.$url, 'r', false,$ctx)
or die("Error reading XML data.");