{"title":"Get account holder information","category":"default","creationDate":1776961628,"content":"<p>As part of the open banking framework for Account Information Service Providers (AISPs), Adyen provides endpoints to retrieve the account information on behalf of account holders who have given their consent.<\/p>\n<p>This page explains how you, as a third-party AISP, use the <code>\/accounts<\/code> endpoint to:<\/p>\n<ul>\n<li><a href=\"#all-accounts\">Get all the accounts of an account holder<\/a><\/li>\n<li><a href=\"#account-details\">Get account details<\/a><\/li>\n<li><a href=\"#account-balances\">Get account balances<\/a><\/li>\n<li><a href=\"#account-transactions\">Get account transactions<\/a><\/li>\n<\/ul>\n<h2>Requirements<\/h2>\n<table>\n<thead>\n<tr>\n<th style=\"text-align: left;\">Requirement<\/th>\n<th style=\"text-align: left;\">Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"text-align: left;\"><strong>Integration type<\/strong><\/td>\n<td style=\"text-align: left;\">Not applicable; this documentation is intended for third-party providers.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><strong>Setup steps<\/strong><\/td>\n<td style=\"text-align: left;\">Before you begin, you must: <ul><li>Complete the <a href=\"\/pt\/business-accounts\/open-banking#onboard-with-adyen\">Adyen onboarding steps<\/a>.<\/li><li> Have your <a href=\"\/pt\/business-accounts\/oauth-flow#get-an-access-token\">access token<\/a> for the Adyen business account.<\/li><li>Have the <a href=\"\/pt\/business-accounts\/oauth-flow#create-a-consent\">consent ID<\/a> related to the consent that the account holder gave you.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><\/li><\/ul><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2 id=\"all-accounts\">Get all accounts of an account holder<\/h2>\n<p>To get a list of all Adyen business accounts associated with an account holder:<\/p>\n<ol>\n<li>\n<p>Make a GET <code>\/accounts<\/code> request. In the request header, make sure to add the <code>consent_id<\/code> related to the account.<\/p>\n<div data-component-wrapper=\"code-sample\">\n<code-sample :title=\"'Get all accounts by consent ID'\" :id=\"''\" :code-data=\"[{&quot;language&quot;:&quot;bash&quot;,&quot;tabTitle&quot;:&quot;&quot;,&quot;content&quot;:&quot;curl  'https:\\\/\\\/openbanking-psd2-test.adyen.com\\\/obeu\\\/aisp\\\/v1\\\/accounts' \\\\\\n--header 'X-Request-ID: {your-request-id}' \\\\\\n--header 'Consent_Id: {consent-id}' \\\\\\n--header 'Authorization: Bearer {access-token}'&quot;}]\" :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<\/li>\n<li>\n<p>Check the response for the list of accounts associated with an account holder and the details about each account. The response is an array of accounts, where each array item contains the following fields:<\/p>\n<table>\n<thead>\n<tr>\n<th>Parameter<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>resourceId<\/code><\/td>\n<td>A string that represents the ID of the account.<\/td>\n<\/tr>\n<tr>\n<td><code>ownerName<\/code><\/td>\n<td>Name of the legal account owner.<\/td>\n<\/tr>\n<tr>\n<td><code>iban<\/code><\/td>\n<td>IBAN of an account.<\/td>\n<\/tr>\n<tr>\n<td><code>currencyCode<\/code><\/td>\n<td>The three-character <a href=\"\/pt\/development-resources\/currency-codes\/\">ISO currency code<\/a>.<\/td>\n<\/tr>\n<tr>\n<td><code>product<\/code><\/td>\n<td>Product name of the bank for this account, proprietary definition.<\/td>\n<\/tr>\n<tr>\n<td><code>status<\/code><\/td>\n<td>The account status.<\/td>\n<\/tr>\n<tr>\n<td><code>_links<\/code><\/td>\n<td>Links to the account, which can be directly used for retrieving account information from this dedicated account, such as balances and\/or transactions.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre><code class=\"language-json\">{\n   \"accounts\": [\n       {\n           \"resourceId\": \"S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\",\n           \"ownerName\": \"ADYEN NV\",\n           \"iban\": \"NL91ABNA0417164300\",\n           \"currencyCode\": \"EUR\",\n           \"product\": \"BankAccountNumber\",\n           \"status\": \"Active\",\n           \"_links\": {\n               \"balances\": {\n                   \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/balances\"\n               },\n               \"transactions\": {\n                   \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/transactions\"\n               }\n           }\n       }\n   ]\n}<\/code><\/pre>\n<\/li>\n<\/ol>\n<h2 id=\"account-details\">Get account details<\/h2>\n<p>To get detailed information for a specific account identified by its <code>resourceId<\/code>:<\/p>\n<ol>\n<li>\n<p>Make a GET <code>\/accounts\/{resourceId}<\/code> request, where <code>resourceId<\/code> is the identification of the account that you received in the GET <code>\/accounts<\/code> response.  In the request header, make sure to add the <code>consent_id<\/code> related to the account.<\/p>\n<div data-component-wrapper=\"code-sample\">\n<code-sample :title=\"'Get account details'\" :id=\"''\" :code-data=\"[{&quot;language&quot;:&quot;bash&quot;,&quot;tabTitle&quot;:&quot;&quot;,&quot;content&quot;:&quot;curl  'https:\\\/\\\/openbanking-psd2-test.adyen.com\\\/obeu\\\/aisp\\\/v1\\\/accounts\\\/{resourceId}' \\\\\\n--header 'X-Request-ID: {your-request-id}' \\\\\\n--header 'Consent_Id: {consent-id}' \\\\\\n--header 'Authorization: Bearer {access-token}'&quot;}]\" :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<\/li>\n<li>\n<p>The response of the request may look like this:<\/p>\n<pre><code class=\"language-json\">{\n   \"resourceId\": \"S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\",\n   \"ownerName\": \"Simon Hopper\",\n   \"iban\": \"NL91ABNA0417164300\",\n   \"currencyCode\": \"EUR\",\n   \"product\": \"BankAccountNumber\",\n   \"status\": \"Active\",\n   \"_links\": {\n       \"balances\": {\n           \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/balances\"\n       },\n       \"transactions\": {\n           \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/transactions\"\n       }\n   }\n}<\/code><\/pre>\n<\/li>\n<\/ol>\n<h2 id=\"account-balances\">Get account balances<\/h2>\n<p>To get balance information for a specific account identified by its <code>resourceId<\/code>:<\/p>\n<ol>\n<li>\n<p>Make a GET <code>\/accounts\/{resourceId}\/balances<\/code> request, where <code>resourceId<\/code> is the identification of the account that you received in the GET <code>\/accounts<\/code> response.  In the request header, make sure to add the <code>consent_id<\/code> related to the account.<\/p>\n<div data-component-wrapper=\"code-sample\">\n<code-sample :title=\"'Get account balances'\" :id=\"''\" :code-data=\"[{&quot;language&quot;:&quot;bash&quot;,&quot;tabTitle&quot;:&quot;&quot;,&quot;content&quot;:&quot;curl  'https:\\\/\\\/openbanking-psd2-test.adyen.com\\\/obeu\\\/aisp\\\/v1\\\/accounts\\\/{resourceId}\\\/balances' \\\\\\n--header 'X-Request-ID: {your-request-id}' \\\\\\n--header 'Consent_Id: {consent-id}' \\\\\\n--header 'Authorization: Bearer {access-token}'&quot;}]\" :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<\/li>\n<li>\n<p>Check the response for details about the account's IBAN, currency, and a list of balances, each detailing the balance type and amount. The response contains the following fields:<\/p>\n<table>\n<thead>\n<tr>\n<th>Parameter<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>balanceType<\/code><\/td>\n<td>Possible values are: <ul><li><strong>authorised<\/strong>: Funds held for pending transactions, this amount is blocked and unavailable for other uses.<\/li><li><strong>closingBooked<\/strong>: Balance of the account at the end of the pre-agreed account reporting period.<\/li><li><strong>expected<\/strong>: Balance composed of booked entries and pending items known at the time of calculation.<\/li><li><strong>openingBooked<\/strong>: Book balance of the account at the beginning of the account reporting period.<\/li><li><strong>interimAvailable<\/strong>: Available balance calculated in the course of the account servicer's business day.<\/li><li><strong>interimBooked<\/strong>: Balance calculated in the course of the account servicer's business day, at the time specified.<\/li><li><strong>forwardAvailable<\/strong>: Forward available balance of money that is at the disposal of the account owner on the date specified.<\/li><li><strong>nonInvoiced<\/strong>: Not yet invoiced, for card accounts only.<\/li><\/ul><\/td>\n<\/tr>\n<tr>\n<td><code>balanceAmount<\/code><\/td>\n<td>The amount and currency of the total available amount.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<pre><code class=\"language-json\">{\n   \"account\": {\n       \"iban\": \"NL91ABNA0417164300\",\n       \"currency\": \"EUR\"\n   },\n   \"balances\": [\n       {\n           \"balanceType\": \"authorised\",\n           \"balanceAmount\": {\n               \"amount\": \"23.49\",\n               \"currency\": \"EUR\"\n           }\n       },\n       {\n           \"balanceType\": \"expected\",\n           \"balanceAmount\": {\n               \"amount\": \"24.24\",\n               \"currency\": \"EUR\"\n           }\n       }\n   ]\n}<\/code><\/pre>\n<\/li>\n<\/ol>\n<h2 id=\"account-transactions\">Get account transactions<\/h2>\n<p>To get transaction information for a specific account identified by its <code>resourceId<\/code>:<\/p>\n<ol>\n<li>Make a GET <code>\/accounts\/{resourceId}\/transactions<\/code> request with the following query parameters, where <code>resourceId<\/code> is the identification of the account that you received in the GET <code>\/accounts<\/code> response.  In the request header, make sure to add the <code>consent_id<\/code> related to the account.<\/li>\n<\/ol>\n<table>\n<thead>\n<tr>\n<th>Query Parameter<\/th>\n<th style=\"text-align: center;\">Required<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>bookingStatus<\/code><\/td>\n<td style=\"text-align: center;\"><img title=\"-white_check_mark-\" alt=\"-white_check_mark-\" class=\"smileys\" src=\"\/user\/data\/smileys\/emoji\/white_check_mark.png\" \/><\/td>\n<td>The status of the transaction. Possible values: <ul><li><strong>booked<\/strong>: Transactions settled.<\/li><li><strong>pending<\/strong>: Transactions in process.<\/li><li><strong>both<\/strong>: Transactions that are both booked and in a pending state.<\/li><ul>.<\/td>\n<\/tr>\n<tr>\n<td><code>dateFrom<\/code><\/td>\n<td style=\"text-align: center;\"><img title=\"-white_check_mark-\" alt=\"-white_check_mark-\" class=\"smileys\" src=\"\/user\/data\/smileys\/emoji\/white_check_mark.png\" \/><\/td>\n<td>Specifies a starting date or timestamp for filtering data. Must be a valid ISO format, such as yyyy-mm-dd.<\/td>\n<\/tr>\n<tr>\n<td><code>dateTo<\/code><\/td>\n<td style=\"text-align: center;\"><img title=\"-white_check_mark-\" alt=\"-white_check_mark-\" class=\"smileys\" src=\"\/user\/data\/smileys\/emoji\/white_check_mark.png\" \/><\/td>\n<td>Specifies an ending date or timestamp for filtering data. Must be a valid ISO format, such as yyyy-mm-dd.<\/td>\n<\/tr>\n<tr>\n<td><code>pageSize<\/code><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td>Specifies the maximum number of records that should be included in the API response. The range is from 1 to 50. Default value is 1.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Get account transactions'\" :id=\"''\" :code-data=\"[{&quot;language&quot;:&quot;bash&quot;,&quot;tabTitle&quot;:&quot;&quot;,&quot;content&quot;:&quot;curl  'https:\\\/\\\/openbanking-psd2-test.adyen.com\\\/obeu\\\/v1\\\/accounts\\\/{resourceId}\\\/transactions?bookingStatus=booked&amp;dateFrom=2020-01-01&amp;pageSize={account-transactions-page-size}' \\\\\\n--header 'X-Request-ID: {your-request-id}' \\\\\\n--header 'Consent_Id: {consent-id}' \\\\\\n--header 'Authorization: Bearer {access-token}'&quot;}]\" :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<ol start=\"2\">\n<li>\n<p>Check the response for details about the account's IBAN, currency, and a list of transactions. The response is an array of transactions, each detailing  booking date, transaction amount, and creditor information. If consent has been granted for balances, you will also see an array of balances with details. At the end of the response you will see links, to manage the length we implement pagination. These links can be the previous and next pages, as well as direct links to account details.<\/p>\n<pre><code class=\"language-json\">{\n   \"account\": {\n       \"iban\": \"NL91ABNA0417164300\",\n       \"currency\": \"EUR\"\n   },\n   \"balances\": [\n       {\n           \"balanceType\": \"expected\",\n           \"balanceAmount\": {\n               \"amount\": \"24.24\",\n               \"currency\": \"EUR\"\n           }\n       },\n       {\n           \"balanceType\": \"authorised\",\n           \"balanceAmount\": {\n               \"amount\": \"23.49\",\n               \"currency\": \"EUR\"\n           }\n       }\n   ],\n   \"transactions\": {\n       \"booked\": [\n           {\n               \"transactionId\": \"EVJN4227K22322295J23J33BN52T4MEUR\",\n               \"bookingDate\": \"2023-06-13T11:37:01\",\n               \"valueDate\": \"2023-06-13T11:37:01\",\n               \"transactionAmount\": {\n                   \"amount\": \"-10.01\",\n                   \"currency\": \"EUR\"\n               },\n               \"creditorName\": \"Joe Doe\",\n               \"creditorAccount\": {\n                   \"iban\": \"NL57INGB4654188101\",\n                   \"currency\": \"EUR\"\n               }\n           },\n           {\n               \"transactionId\": \"EVJN4227K22322295J23H5XBMJ765REUR\",\n               \"bookingDate\": \"2023-06-13T11:25:18\",\n               \"valueDate\": \"2023-06-13T11:25:17\",\n                \"transactionAmount\": {\n                   \"amount\": \"-11.50\",\n                   \"currency\": \"EUR\"\n               },\n               \"creditorName\": \"Joe Doe\",\n               \"creditorAccount\": {\n                   \"iban\": \"NL57INGB4654188101\",\n                   \"currency\": \"EUR\"\n               }\n           }\n       ]\n   },\n   \"_links\": {\n       \"next\": {\n           \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/transactions?bookingStatus=booked&amp;dateFrom=2023-06-10&amp;dateTo=2023-08-01&amp;pageSize=2&amp;cursor=S2B-c2RFJCtoKWxAV11JQmZ9QFx33KH5ubVlwRj02K0ZtRzMgYWQkJVslRXpDdVtwby9GaDQkUEdAdTIsOkZlRXZNU187PyZBOU533UjZHM0hrW018TzN8Om0zemN4MGtrTVYuMkcsL0BzNzo\"\n       },\n       \"account\": {\n           \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\"\n       }\n   }\n}<\/code><\/pre>\n<h2>See also<\/h2>\n<\/li>\n<\/ol>\n<div class=\"see-also-links output-inline\" id=\"see-also\">\n<ul><li><a href=\"\/business-accounts\/pisp\"\n                        target=\"_self\"\n                        >\n                    Initiate payments\n                <\/a><\/li><li><a href=\"\/business-accounts\/piisp\"\n                        target=\"_self\"\n                        >\n                    Confirm funds\n                <\/a><\/li><\/ul><\/div>\n","url":"https:\/\/docs.adyen.com\/pt\/business-accounts\/aisp","articleFields":{"description":"Learn how to consume our dedicated AISP endpoints for getting account information.","feedback_component":true,"id":"31504141","type":"page","_expandable":{"operations":""},"status":"current","parameter":{"directoryPath":"\/business-accounts","model":"balance platform"}},"algolia":{"url":"https:\/\/docs.adyen.com\/pt\/business-accounts\/aisp","title":"Get account holder information","content":"As part of the open banking framework for Account Information Service Providers (AISPs), Adyen provides endpoints to retrieve the account information on behalf of account holders who have given their consent.\nThis page explains how you, as a third-party AISP, use the \/accounts endpoint to:\n\nGet all the accounts of an account holder\nGet account details\nGet account balances\nGet account transactions\n\nRequirements\n\n\n\nRequirement\nDescription\n\n\n\n\nIntegration type\nNot applicable; this documentation is intended for third-party providers.\n\n\nSetup steps\nBefore you begin, you must: Complete the Adyen onboarding steps. Have your access token for the Adyen business account.Have the consent ID related to the consent that the account holder gave you.\n\n\n\n\n\n\nGet all accounts of an account holder\nTo get a list of all Adyen business accounts associated with an account holder:\n\n\nMake a GET \/accounts request. In the request header, make sure to add the consent_id related to the account.\n\n\n\n\n\nCheck the response for the list of accounts associated with an account holder and the details about each account. The response is an array of accounts, where each array item contains the following fields:\n\n\n\nParameter\nDescription\n\n\n\n\nresourceId\nA string that represents the ID of the account.\n\n\nownerName\nName of the legal account owner.\n\n\niban\nIBAN of an account.\n\n\ncurrencyCode\nThe three-character ISO currency code.\n\n\nproduct\nProduct name of the bank for this account, proprietary definition.\n\n\nstatus\nThe account status.\n\n\n_links\nLinks to the account, which can be directly used for retrieving account information from this dedicated account, such as balances and\/or transactions.\n\n\n\n{\n   \"accounts\": [\n       {\n           \"resourceId\": \"S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\",\n           \"ownerName\": \"ADYEN NV\",\n           \"iban\": \"NL91ABNA0417164300\",\n           \"currencyCode\": \"EUR\",\n           \"product\": \"BankAccountNumber\",\n           \"status\": \"Active\",\n           \"_links\": {\n               \"balances\": {\n                   \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/balances\"\n               },\n               \"transactions\": {\n                   \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/transactions\"\n               }\n           }\n       }\n   ]\n}\n\n\nGet account details\nTo get detailed information for a specific account identified by its resourceId:\n\n\nMake a GET \/accounts\/{resourceId} request, where resourceId is the identification of the account that you received in the GET \/accounts response.  In the request header, make sure to add the consent_id related to the account.\n\n\n\n\n\nThe response of the request may look like this:\n{\n   \"resourceId\": \"S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\",\n   \"ownerName\": \"Simon Hopper\",\n   \"iban\": \"NL91ABNA0417164300\",\n   \"currencyCode\": \"EUR\",\n   \"product\": \"BankAccountNumber\",\n   \"status\": \"Active\",\n   \"_links\": {\n       \"balances\": {\n           \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/balances\"\n       },\n       \"transactions\": {\n           \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/transactions\"\n       }\n   }\n}\n\n\nGet account balances\nTo get balance information for a specific account identified by its resourceId:\n\n\nMake a GET \/accounts\/{resourceId}\/balances request, where resourceId is the identification of the account that you received in the GET \/accounts response.  In the request header, make sure to add the consent_id related to the account.\n\n\n\n\n\nCheck the response for details about the account's IBAN, currency, and a list of balances, each detailing the balance type and amount. The response contains the following fields:\n\n\n\nParameter\nDescription\n\n\n\n\nbalanceType\nPossible values are: authorised: Funds held for pending transactions, this amount is blocked and unavailable for other uses.closingBooked: Balance of the account at the end of the pre-agreed account reporting period.expected: Balance composed of booked entries and pending items known at the time of calculation.openingBooked: Book balance of the account at the beginning of the account reporting period.interimAvailable: Available balance calculated in the course of the account servicer's business day.interimBooked: Balance calculated in the course of the account servicer's business day, at the time specified.forwardAvailable: Forward available balance of money that is at the disposal of the account owner on the date specified.nonInvoiced: Not yet invoiced, for card accounts only.\n\n\nbalanceAmount\nThe amount and currency of the total available amount.\n\n\n\n{\n   \"account\": {\n       \"iban\": \"NL91ABNA0417164300\",\n       \"currency\": \"EUR\"\n   },\n   \"balances\": [\n       {\n           \"balanceType\": \"authorised\",\n           \"balanceAmount\": {\n               \"amount\": \"23.49\",\n               \"currency\": \"EUR\"\n           }\n       },\n       {\n           \"balanceType\": \"expected\",\n           \"balanceAmount\": {\n               \"amount\": \"24.24\",\n               \"currency\": \"EUR\"\n           }\n       }\n   ]\n}\n\n\nGet account transactions\nTo get transaction information for a specific account identified by its resourceId:\n\nMake a GET \/accounts\/{resourceId}\/transactions request with the following query parameters, where resourceId is the identification of the account that you received in the GET \/accounts response.  In the request header, make sure to add the consent_id related to the account.\n\n\n\n\nQuery Parameter\nRequired\nDescription\n\n\n\n\nbookingStatus\n\nThe status of the transaction. Possible values: booked: Transactions settled.pending: Transactions in process.both: Transactions that are both booked and in a pending state..\n\n\ndateFrom\n\nSpecifies a starting date or timestamp for filtering data. Must be a valid ISO format, such as yyyy-mm-dd.\n\n\ndateTo\n\nSpecifies an ending date or timestamp for filtering data. Must be a valid ISO format, such as yyyy-mm-dd.\n\n\npageSize\n\nSpecifies the maximum number of records that should be included in the API response. The range is from 1 to 50. Default value is 1.\n\n\n\n\n    \n\n\n\nCheck the response for details about the account's IBAN, currency, and a list of transactions. The response is an array of transactions, each detailing  booking date, transaction amount, and creditor information. If consent has been granted for balances, you will also see an array of balances with details. At the end of the response you will see links, to manage the length we implement pagination. These links can be the previous and next pages, as well as direct links to account details.\n{\n   \"account\": {\n       \"iban\": \"NL91ABNA0417164300\",\n       \"currency\": \"EUR\"\n   },\n   \"balances\": [\n       {\n           \"balanceType\": \"expected\",\n           \"balanceAmount\": {\n               \"amount\": \"24.24\",\n               \"currency\": \"EUR\"\n           }\n       },\n       {\n           \"balanceType\": \"authorised\",\n           \"balanceAmount\": {\n               \"amount\": \"23.49\",\n               \"currency\": \"EUR\"\n           }\n       }\n   ],\n   \"transactions\": {\n       \"booked\": [\n           {\n               \"transactionId\": \"EVJN4227K22322295J23J33BN52T4MEUR\",\n               \"bookingDate\": \"2023-06-13T11:37:01\",\n               \"valueDate\": \"2023-06-13T11:37:01\",\n               \"transactionAmount\": {\n                   \"amount\": \"-10.01\",\n                   \"currency\": \"EUR\"\n               },\n               \"creditorName\": \"Joe Doe\",\n               \"creditorAccount\": {\n                   \"iban\": \"NL57INGB4654188101\",\n                   \"currency\": \"EUR\"\n               }\n           },\n           {\n               \"transactionId\": \"EVJN4227K22322295J23H5XBMJ765REUR\",\n               \"bookingDate\": \"2023-06-13T11:25:18\",\n               \"valueDate\": \"2023-06-13T11:25:17\",\n                \"transactionAmount\": {\n                   \"amount\": \"-11.50\",\n                   \"currency\": \"EUR\"\n               },\n               \"creditorName\": \"Joe Doe\",\n               \"creditorAccount\": {\n                   \"iban\": \"NL57INGB4654188101\",\n                   \"currency\": \"EUR\"\n               }\n           }\n       ]\n   },\n   \"_links\": {\n       \"next\": {\n           \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\/transactions?bookingStatus=booked&amp;dateFrom=2023-06-10&amp;dateTo=2023-08-01&amp;pageSize=2&amp;cursor=S2B-c2RFJCtoKWxAV11JQmZ9QFx33KH5ubVlwRj02K0ZtRzMgYWQkJVslRXpDdVtwby9GaDQkUEdAdTIsOkZlRXZNU187PyZBOU533UjZHM0hrW018TzN8Om0zemN4MGtrTVYuMkcsL0BzNzo\"\n       },\n       \"account\": {\n           \"href\": \"\/obeu\/aisp\/v1\/accounts\/S3B-QyYjNjZ0OyI33Kn86KilYIUx0TVtuOw\"\n       }\n   }\n}\nSee also\n\n\n\n\n                    Initiate payments\n                \n                    Confirm funds\n                \n","type":"page","locale":"pt","boost":18,"hierarchy":{"lvl0":"Home","lvl1":"Business accounts","lvl2":"Get account holder information"},"hierarchy_url":{"lvl0":"https:\/\/docs.adyen.com\/pt","lvl1":"https:\/\/docs.adyen.com\/pt\/business-accounts","lvl2":"\/pt\/business-accounts\/aisp"},"levels":3,"category":"","category_color":"","tags":["account","holder","information"]}}
