Account Info Report
[deprecated] Please see our report generation as described here.
This report shows all details about an account.
This report can be requested via the Modular Report endpoint.
ReportOptions
This report has no options to be considered.
Response Structure of Account Info Report
The generated report will be part of the modular report response.
{
"type": "ACCOUNT_INFOS",
"account": AccountInfo
}
All details about the account will be provided in this object.
AccountInfo
{
"account_alias": ?String,
"holder_name": ?String,
"currency": ?String,
"iban": ?String,
"account_number": ?String,
"bic": ?String,
"bank_code": ?String,
"country": ?String,
"account_type": ?Enum<'DEFAULT', 'SAVING', 'CREDITCARD', 'DEPOT'>,
"transfer_type": ?Enum<'NONE', 'DOMESTIC', 'FULL', 'REFERENCE', 'RESTRICTED'>
}
An alternative name for the account. A description that the consumer set for this account. It should be displayed if it is set, because the consumer can relate to it.
The account holder name. The format of the string is unknown, as it depends on the bank.
Furthermore, there is no guarantee for the correctness of the name, because some banks allow the consumer to change of the name inside the banking portal.
Indicates the type of the account.
DEFAULT
- A regular account.SAVING
- A savings account.CREDITCARD
- A credit card account.DEPOT
- A depot for broking or similar.
Indicates if the account can be used for a transaction or not.
NONE
- It is not possible to use the account for transfers.DOMESTIC
- The account can only be used for domestic transfers.FULL
- The account is fully usable.REFERENCE
- The account can only be used for transfers to one specific account.RESTRICTED
- The account might be under protection from execution or something similar. Transfers are possible, but with restricted functionality (e.g. limited transfer amount).
Example response
{
"data": {
"accounts": [
{
"insights_account_id": "3b3d678f-66b7-4b23-a2a5-0bfd275e86a1",
"reports": [
{
"type": "ACCOUNT_INFOS",
"account": {
"account_alias": "Girokonto(KarlMustermann)",
"holder_name": "Karl Mustermann",
"currency": "EUR",
"iban": "DE06000000000023456789",
"bic": "SFRTDE20XXX",
"account_type": "DEFAULT",
"transfer_type": "FULL"
}
}
]
}
]
}
}