adorsys / open-banking-gateway

Provides RESTful API, tools, adapters, and connectors for transparent access to open banking API's (for banks that support PSD2 and XS2A as well as HBCI/FinTS)
https://adorsys.github.io/open-banking-gateway
GNU Affero General Public License v3.0
248 stars 93 forks source link

Add currency selector to dedicated consent initiation screen #1149

Open ivaniuminov opened 3 years ago

ivaniuminov commented 3 years ago

Before, during consent initiation, fintech provided account as a list of IBAN strings. Now we need to provide account list as a list of account reference type:

Before: "accounts": ["DE80760700240271232400"], "balances": ["DE80760700240271232400"], "transactions": ["DE80760700240271232400"]

Now: "accounts": [ { "iban": "DE80760700240271232400", "currency": "EUR" } ], "balances": [ { "iban": "DE80760700240271232400", "currency": "EUR" } ], "transactions": [ { "iban": "DE80760700240271232400", "currency": "EUR" } ]

gatiskalnins commented 3 years ago

https://jira.adorsys.de/browse/OBG-62