Bank Accounts
Bank account information.
#Retrieve a bank account
get/v2/open-banking/bank-accounts/{bank_account_id}
Retrieves a bank account.
Path parameters
- #bank_account_idstringID of the bank account.required
Query parameters
- #userstring (uuid)ID of the user.required
Example Request
1curl --request POST \
2 --url https://api.argyle.com/v2/open-banking/bank-accounts/8057637863?user=01975b3b-5ba6-3ec1-2148-f595b6d92614 \
3 --header 'accept: application/json' \
4 --header 'content-type: application/json'
Example Response
1{
2 "id": "8057637863",
3 "user": "01975b3b-5ba6-3ec1-2148-f595b6d92614",
4 "account_number_display": "1104",
5 "name": "Checking",
6 "type": "checking",
7 "aggregation_status_code": 0,
8 "status": "active",
9 "institution": "102168",
10 "aggregation_success_date": "2025-06-10T22:04:55.000Z",
11 "aggregation_attempt_date": "2025-06-10T22:04:55.000Z",
12 "created_date": "2025-06-10T19:06:21.000Z",
13 "currency": "USD",
14 "institution_login": 8029158291,
15 "display_position": 1,
16 "parent_bank_account": null,
17 "linked_account_date": "2025-06-10T19:06:29.000Z"
18}
#List all bank accounts
get/v2/open-banking/bank-accounts
Returns an array of the user's bank accounts.
Query parameters
- #userstring (uuid)ID of the user.required
Example Request
1curl --request POST \
2 --url https://api.argyle.com/v2/open-banking/bank-accounts?user=01975b3b-5ba6-3ec1-2148-f595b6d92614 \
3 --header 'accept: application/json' \
4 --header 'content-type: application/json'
Example Response
1{
2 "results": [
3 {
4 "id": "8057637863",
5 "user": "01975b3b-5ba6-3ec1-2148-f595b6d92614",
6 "account_number_display": "1104",
7 "name": "Checking",
8 "type": "checking",
9 "aggregation_status_code": 0,
10 "status": "active",
11 "institution": "102168",
12 "aggregation_success_date": "2025-06-10T22:04:55.000Z",
13 "aggregation_attempt_date": "2025-06-10T22:04:55.000Z",
14 "created_date": "2025-06-10T19:06:21.000Z",
15 "currency": "USD",
16 "institution_login": 8029158291,
17 "display_position": 1,
18 "parent_bank_account": null,
19 "linked_account_date": "2025-06-10T19:06:29.000Z"
20 }
21 ]
22}