System
Admin users can query system.current to retrieve system information
system.current
Returns the current system’s information. This API method is in a beta phase and is subject to change.
Request
<?xml version="1.0" encoding="utf-8"?>
<request method="system.current"></request>
Response
<?xml version="1.0" encoding="utf-8"?>
<response xmlns="https://www.freshbooks.com/api/" status="ok">
<system>
<company_name>Acme Inc.</company_name>
<profession>Widget Designer</profession>
<address>
<street1>123 Avenue B</street1>
<street2></street2>
<city>Toronto</city>
<province>Ontario</province>
<postal_code>M1A 1H4</postal_code>
<country>Canada</country>
</address>
<api>
<requests>2</requests> <!-- API requests issued today -->
<request_limit deprecated="1">2147483647</request_limit> <!-- Legacy API request limit (not enforced) -->
</api>
</system>
</response>