adorsys / adorsys/open-banking-gateway
Add currency selector to dedicated consent initiation screen
- Dominant language
- Java
- Stars
- 338
- Forks
- 122
- PR merge metrics
- No merged PRs in 30d
Description
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"
}
]
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.