Bank Account Details
Overview
In order to retrieve account details, you will first need to have a user successfully complete the bank authentication flow. You will also need to have the user's Id to retrieve bank account details.
Retrieve an Account's Details
HTTP Request
Sandbox - GET http://api.staging.aerosync.com/v2/accounts/{{user_id}}
Staging - GET http://api.sandbox.aerosync.com/v2/accounts/{{user_id}}
Production - GET http://api.aerosync.com/v2/accounts/{{user_id}}
Request Parameters
Parameter | Required? | Type | Description |
---|---|---|---|
id | Yes | String | A user's account unique identifier |
Request and Response
GET http://api.staging.aerosync.com/v2/accounts/{{user_id}}
Authorization: Bearer {{token}}
{
"status": "success",
"statusCode": 200,
"account": {
"accountNickname": "Dwight Schrute",
"accountNumber": "102237375016",
"routingNumber": "456987123",
"accountType": "checking",
"bankName": "Aerosync Bank (MFA)",
"canFetchBalance": true,
"connectionMethod": 2
}
}
Updated 1 day ago