Yes you can, but you can't use the skip_account_selection parameter as it's not allowed to pass sensitive data, such as card numbers in the request body. Additionally, using the parameter account_list "ALL" does not give you Cards data.
So for example this request will NOT work:
{
"account_list":[
"ALL"
],
"authentication_method":"MTA",
"country":"FI",
"duration":3600,
"language":"en",
"max_tx_history":3,
"redirect_uri":"{{redirect_uri}}",
"scope":[
"ACCOUNTS_BASIC",
"ACCOUNTS_BALANCES",
"ACCOUNTS_TRANSACTIONS",
"PAYMENTS_MULTIPLE",
"CARDS_INFORMATION",
"CARDS_TRANSACTIONS"
],
"skip_account_selection":true,
"state":"anyString"
}
How should I fix this?
Remove the parameters account_list and "skip_account_selection" so the PSU can select their accounts & relevant Cards from the UI when performing the consent flow.
For more information, have a look here: https://developer.nordeaopenbanking.com/app/documentation?api=Access%20Authorization%20API&version=5.0#authorization-v5-se-fi-dk-no-request