Skip to main content
Version: v2

AccountInfo

The AccountInfo endpoint is used to request an overview of submitted accounts for ConsentCollectionId's.

Calling AccountInfo

Endpoint:             https://openbanking.invers.nl/api/v1/accounts/info
Method: GET

Header: ApiKey: string (required)
X-Request-ID: string (required)

Get-Parameters: ConsentCollectionId: string (required)

Body: empty

Errors: 400, 403 or 500

Parameters

ParameterDescription
ApiKeyApiKey
Example:cEZrSmVPLTN1XzVDM09nVDhEanlZaUJwYzRXTldpVUc=
X-Request-IDRequest identifier, guid that is unique for each request.
Example: f1b8d9bd-0118-47ff-bdb7-5e2956ad0e9f
ConsentCollectionIdConsent Collection Identifier from which information is being requested.
Example: d2c95f1b-6802-459e-ba7d-70491ac27d24

Output

FieldTypeDescription
bankIdguidBank identifier
bankNamestringName of the bank
consentedOndatetimeDate of consent
expiresOndatetimeDate untill the consent is valid
fromHistoryDatedatetimeOldest date for which transactions are available; if downloading of history is allowed
statusstringConsent status, see Consent status
IBanstring
lastdownloaddatetimeLast download datedownload
historyAvailableboolTrue if historical transactions may be downloaded
namestringBank account owner's name
productstringBank account type if available

ConsentStatus
ValueNameDescription
0ReceivedConsent has been received
1RejectedConsent has been rejected
2ValidConsent is valid
3RevokedByPsuConsent has been revoked by user
4ExpiredConsent has expired
5TerminatedByTppConsent has been terminated by the provider

The most frequent values are valid and expired; Others are much less common.


Example output
[
{
"BankId": "ec3e0888-36ac-4a96-aaf7-4aa744f0d5d7",
"BankName": "ING bank",
"ConsentedOn": "2020-08-28T09:45:56",
"ExpiresOn": "2019-06-30T00:00:00+02:00",
"FromHistoryDate": "2019-06-30T00:00:00+02:00",
"Status": "Expired",
"IBan": "NL69INGB0123456789",
"Lastdownload": "2020-08-28T00:00:00+02:00",
"HistoryAvailable": false,
"Name": "Bob Tuinman",
"Product": null
},
{
"BankId": "ec3e0888-36ac-4a96-aaf7-4aa744f0d5d7",
"BankName": "ING bank",
"ConsentedOn": "2020-08-28T09:45:56",
"ExpiresOn": "2019-06-30T00:00:00+02:00",
"FromHistoryDate": "2019-06-30T00:00:00+02:00",
"Status": "Expired",
"IBan": "NL69INGB0123456789",
"Lastdownload": "2020-08-28T00:00:00+02:00",
"HistoryAvailable": false,
"Name": "Bob Tuinman",
"Product": null
}
]