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
}

type String, always present

The type always contains the value "ACCOUNT_INFOS" for this report.

account AccountInfo, always present

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'>
}

account_alias String, optional

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.

holder_name String, optional

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.

currency String, optional

The currency according to ISO-4217.

iban String, optional

The IBAN of the account.

account_number String, optional

The account number of the account.

bic String, optional

The BIC of the consumer's bank.

bank_code String, optional

The bank code of the consumer's bank.

country String, optional

The country of the account, typically same as where the bank resides.

account_type Enum, optional

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.

transfer_type Enum, optional

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"
                        }
                     }
                ]
            }
        ]
    }
}

results matching ""

    No results matching ""