v1

latestOpenAPI 3.0.02026-07-2459256884.4 KB
User Management

Add a Bank Account

Create a bank account for the user

post/v1/users/{userId}/bankAccounts

Path parameters

userIdstring required

Request body

routingNumberstring required

Bank account routing number

accountNumberstring required

Bank account number

accountType'CHECKING' | 'SAVINGS'

Bank account type

telephoneBankingPinstring

The telephone banking pin associated with the user's account

Example request

{
  "routingNumber": "222222226",
  "accountNumber": "9110001011010",
  "accountType": "CHECKING",
  "telephoneBankingPin": "1234"
}

Response

Successful response

Example response

{
  "status": {
    "code": 200,
    "desc": "success",
    "messages": [
      {
        "desc": "Example description"
      }
    ]
  },
  "data": {
    "bankAccountId": "53ec068e-3ae0-4e40-826e-eaa007e1426f",
    "userId": "53ec068e-3ae0-4e40-826e-eaa007e1426f",
    "accountNumberLastFourDigits": "1234",
    "accountType": "CHECKING"
  }
}