#11938·invoiceninja

Nordigen total Balance stays 0.00

Author: syzygyinteractivemediaCreated May 6, 2026Updated May 6, 2026
Labelsmore info requested

the bank account total balance for a Nordigen bank connection stays 0.00.

probably because the job file (app/Jobs/Bank/ProcessBankTransactionsNordigen.php has a commented line:

php
 // $this->bank_integration->balance = $account['current_balance'];

as the job file for app/Jobs/Bank/ProcessBankTransactionsYodlee.php does not have this line commented...

php
$this->bank_integration->balance = $account[0]['current_balance'];
$this->bank_integration->currency = $account[0]['account_currency'];

perhaps uncommenting would already fix this issue.

Perhaps also add the currency as in app/Helpers/Bank/Nordigen/Transformer/AccountTransformer.php shows a comment how the response of nordigen looks like in a stdClass() form.

php
[balances] => [
                {
                    [balanceAmount]: {
                        [amount] => 9825.64
                        [currency] => EUR
                    },
]

Source: invoiceninja/invoiceninja