Skip to main content

bankInfo

/v2/private/purchase/aa/bankInfo

Available Methods​

  • POST

POST /v2/private/purchase/aa/bankInfo​

This endpoint is used to send the user's bank information to AA. None of the user's information from this step is saved to the DB.

Params​

ParamTypeDescription
accountHolderStringThe name of the bank account's holder.
financialInstitutionStringThe name of the bank on the account.
routingTransitNumberStringThe user's routing transit number.
accountNumberStringThe user's account number.
accountTypeString Enum - ['Savings', 'Checking']The user's bank account type.
requestedDraftDayStringThe day of the month the user would like their account to be drafted from
Example request body
body: {
"accountHolder": "Joanne Smith",
"financialInstitution": "Chase Bank",
"routingTransitNumber": "38489929",
"accountNumber": "99927774996",
"accountType": "Savings",
"requestedDraftDay": "15"
}

Returns​

Response message from AA.

"data": {
"message": "Payment information updated for application number: 1000690",
"errorMessage": ""
}
info

For more detailed information about each value in purchase, please refer to the user model docs.