-
Notifications
You must be signed in to change notification settings - Fork 91
Description
I am trying to fetch my current balances of an Deka Depot at the Sparkasse.
For an Deka Depot does not exist an IBAN so it only appears using client.get_information() but not with client.get_sepa_accounts().
My problem is that I can not provide an SEPAAccount-objejct for the Depot to fetch information from .get_transactions() or .get_holdings().
Is there a way to fetch the balances of the Depot?
I tried passing other SEPAAccounts to client.get_holdings(account), but this does not work, as I retrieve following error:
fints.exceptions.FinTSClientError: Error during dialog initialization, could not fetch BPD. Please check that you passed the correct bank identifier to the HBCI URL of the correct bank.
The same accounts work fine with client.get_transactions() and show their own transactions as expected.
The Deka Depot has following attributes when fetched with client.get_information():
- type: 60
- iban: None
- account_number: xxx
- supported_informations: [many]
While researching for a solution, I found similar problems with credit cards, but as credit card object types are 50 I did not expect that this would solve my problem.
Never less I tried using client.get_credit_card_transactions() with my deka depot. Suprise: It did not work.
I appreciate every idea. If you need me to provide more information, please feel free to ask.