curl -X GET \
/open-banking-accounts \
--header "Authorization: Bearer <token>"{
"data": [
{
"id": "ad8f1b9e-0b1e-4e1a-8e0a-0b0b0b0b0b0b",
"alias": "My Bank Account",
"bankName": "My Bank",
"iban": "DE1234567*********5678",
"status": "linked",
"provider": "klarna",
"createdAt": "2021-01-01T00:00:00+00:00",
"validUntil": "2021-01-01T00:00:00+00:00",
"lastAccessedAt": "2021-01-01T00:00:00+00:00",
"lastInformedAt": "2021-01-01T00:00:00+00:00"
}
],
"meta": {
"pagination": {
"totalItems": 123,
"itemsPerPage": 123,
"currentPage": 123,
"lastPage": 123,
"pageTotalItems": 123
}
}
}Get all connected open banking accounts, which allows to access transactions, balances and other information
Required permissions:open-banking-account:readcurl -X GET \
/open-banking-accounts \
--header "Authorization: Bearer <token>"{
"data": [
{
"id": "ad8f1b9e-0b1e-4e1a-8e0a-0b0b0b0b0b0b",
"alias": "My Bank Account",
"bankName": "My Bank",
"iban": "DE1234567*********5678",
"status": "linked",
"provider": "klarna",
"createdAt": "2021-01-01T00:00:00+00:00",
"validUntil": "2021-01-01T00:00:00+00:00",
"lastAccessedAt": "2021-01-01T00:00:00+00:00",
"lastInformedAt": "2021-01-01T00:00:00+00:00"
}
],
"meta": {
"pagination": {
"totalItems": 123,
"itemsPerPage": 123,
"currentPage": 123,
"lastPage": 123,
"pageTotalItems": 123
}
}
}Value for the Authorization header parameter.
The collection page number
The number of items per page
0 <= x <= 100OpenBankingAccount collection
Show child attributes
"ad8f1b9e-0b1e-4e1a-8e0a-0b0b0b0b0b0b"
"My Bank Account"
"My Bank"
"DE1234567*********5678"
Possible values:
linked: The account is linked and can be used for fetching transactionsdisabled: The account is disabled and cannot be used for fetching transactionsexpired: The account access is expired (usally after 90 days) and cannot be used for fetching transactionsfailed: The account linking is failed. Try to link the account againlinked, disabled, expired, failed "linked"
Possible values:
klarna: The account is linked with Klarnaklarna "klarna"
"2021-01-01T00:00:00+00:00"
The date when the account access expires and a new consent is required
"2021-01-01T00:00:00+00:00"
The last time the system accessed the account to obtain data
"2021-01-01T00:00:00+00:00"
The last time the user was informed about the account expiration
"2021-01-01T00:00:00+00:00"
Was this page helpful?