Usage report for a specified user and period
POST Variables
Variable Name | Var Type | Type | Description |
action | String | Required | Must be “Get_Fax_Usage” |
access_id | Integer | Required | Account Number |
access_pwd | String | Required | Password on the user’s account |
sPeriod | String | Optional | “ALL” or “RANGE” – if not provided defaults to “ALL” |
sStartDate | String | Optional | Only required if “RANGE” is specified in sPeriod – date format must be “YYYYMMDD” |
sEndDate | String | Optional | Only required if “RANGE” is specified in sPeriod – date format must be “YYYYMMDD” |
sIncludeSubUsers | String | Optional | Set to “Y” to include all usage by sub users of the account |
sResponseFormat | String | Optional | “XML” or “JSON” – Default is JSON |
Notes:
- If you want to use sIncludeSubUsers you must use the access_id and access_pwd of the Master Account
- Usage values are only available for the current month
Returned Variables (JSON or XML Encoded)
Status | string | “Success” or “Failed” |
Result | string | Array of the fax properties as follows:
array( UserID => Integer, Period => String, ClientName => String(50), SubUserID => Integer, BillingNumber => String(50), NumberOfFaxes => Integer, NumberOfPages => Integer ) |
Note: If an error is found then the reason for the failure will be in the Result string |
Examples
PHP using cURL
-
<?php
-
‘action’ => ‘Get_Fax_Usage’,
-
‘access_id’ => ‘12345’,
-
‘access_pwd’ => ‘myPassword’,
-
‘sPeriod’ => ‘RANGE’,
-
‘sStartDate’ => ‘20150301’,
-
‘sEndDate’ => ‘20150331’,
-
);
-
CURLOPT_POST => 1,
-
CURLOPT_HEADER => 0,
-
CURLOPT_URL => “https://secure.srfax.com/SRF_SecWebSvc.php”,
-
CURLOPT_FRESH_CONNECT => 1,
-
CURLOPT_RETURNTRANSFER => 1,
-
CURLOPT_FORBID_REUSE => 1,
-
CURLOPT_TIMEOUT => 60,
-
CURLOPT_SSL_VERIFYPEER => false,
-
CURLOPT_SSL_VERIFYHOST => 2,
-
);
-
}
-
else {
-
}
-
?>
PHP using SRFax Object
-
<?php
-
require_once (“srFax_class.php”);
-
$accountID = “12345”;
-
$accountPassword = “myPassword”;
-
// instantiate object with Account ID and Password
-
$srFax = new srFax ( $accountID, $accountPassword );
-
try {
-
‘sPeriod’ => ‘RANGE’,
-
‘sStartDate’ => ‘20150301’,
-
‘sEndDate’ => ‘20150331’,
-
));
-
}
-
catch (Exception $e) { //display error when exception is thrown
-
}
-
if ( $srFax->getRequestStatus () ) {
-
} else {
-
echo “ERROR: “ . $srFax->getRequestResponse ();
-
}
-
?>