Staff have access to the list API call
The Gateway API provides access to the Credit Card Gateways enabled in the application.
Returns a list of payment gateways enabled in your FreshBooks account that can process credit card transactions. You can optionally filter by autobill_capable to return only gateways that support auto-bills.
Note: This method uses pagination
<?xml version="1.0" encoding="utf-8"?> <request method="gateway.list"> <autobill_capable>1</autobill_capable> <!-- Filter by Auto bill capable gateways (Optional) --> </request>
<response xmlns="http://www.freshbooks.com/api/" status="ok">
<gateways page="1" per_page="100" pages="1" total="1">
<gateway>
<name>Authorize.Net</name>
<autobill_capable>1</autobill_capable>
</gateway>
</gateways>
</response>