bankInfo
- base
- localhost
- dev
- prod
/v2/private/purchase/aa/bankInfo
http://localhost:1350/v2/private/purchase/aa/bankInfo
https://dev.everdays.com/v2/private/purchase/aa/bankInfo
https://everdays.com/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​
| Param | Type | Description |
|---|---|---|
| accountHolder | String | The name of the bank account's holder. |
| financialInstitution | String | The name of the bank on the account. |
| routingTransitNumber | String | The user's routing transit number. |
| accountNumber | String | The user's account number. |
| accountType | String Enum - ['Savings', 'Checking'] | The user's bank account type. |
| requestedDraftDay | String | The 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.