Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions freshbooks/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,12 @@ def get_profit_loss_report(self, params={}):
params
)

def get_balance_sheet_report(self, params={}):
return self.get(
f"/accounting/account/{self.active_account_id}/reports/accounting/ledger_entry_balance_sheet",
params
)

def get_autocomplete_clients(self, params={}):
return self.get(
f"/search/account/{self.active_account_id}/autocomplete_clients_v2", params
Expand Down