Retrieve account balance
Archived
Command
https://api.clickatell.com/http/getbalance?user=xxxx&password=xxxx&api_id=xxxxParameters
Examples
Bash
username="place username here"
password="place password here"
api_id="place password here"
curl --data "user=$username&password=$password&api_id=$api_id" \
'https://api.clickatell.com/http/getbalance'PHP
<?php
$username = urlencode("place username here");
$password = urlencode("place password here");
$api_id = urlencode("place api_id here");
echo file_get_contents("https://api.clickatell.com/http/getbalance"
. "?user=$username&password=$password&api_id=$api_id");
?>