Balances Product
jmcta opened this issue · 1 comments
jmcta commented
Just starting out with the python Plaid API, but I noticed that there was no client.Balances.get()
call in the API.
Checking around I found that the class is in api/accounts.py
, but it isn't included in api/__init__.py
nor in client.py
After changing api/__init__.py
to from plaid.api.accounts import Accounts, Balance
and adding Balance
to the include portion of client.py
, I can verify that it does call and work.
Was this omission intentional? Is the Balance
endpoint available another way?
skylarmb commented
Hi there @jmcta i think you are looking for client.Accounts.balance.get
. This mirrors how our api is structured: https://plaid.com/docs/api/products/#accountsbalanceget