Bank Account
Create Bank Account
Get Started
Bank Account
Check
Bank Account
Create Bank Account
Allows you to create one or more bank accounts.
POST
/
bankAccounts
Authorization
string
*
Bearer
Authorization
Required
string
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
object
*
bankAccounts
array
bankAccounts
array
{
"success": true,
"message": "Successfully created",
"data": {
"bankAccounts": [
{
"bankAccountId": "Q36gYVewBOP7Gdx7bDn",
"name": "test",
"nickName": "test",
"accountNumber": "123423432",
"isVerified": false,
"bankId": "kWx8ePPO30eK2Xz",
"addressLine1": "1 tet",
"addressLine2": null,
"city": "cty",
"state": "state",
"zip": "234244",
"phone": null,
"walletId": "8c6d6d4a-6fa8-4a68-9039-27cd3625f39e",
"createdDate": "11-18-2024"
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201 - application/json
{
"success": true,
"message": "Successfully created",
"data": {
"bankAccounts": [
{
"bankAccountId": "Q36gYVewBOP7Gdx7bDn",
"name": "test",
"nickName": "test",
"accountNumber": "123423432",
"isVerified": false,
"bankId": "kWx8ePPO30eK2Xz",
"addressLine1": "1 tet",
"addressLine2": null,
"city": "cty",
"state": "state",
"zip": "234244",
"phone": null,
"walletId": "8c6d6d4a-6fa8-4a68-9039-27cd3625f39e",
"createdDate": "11-18-2024"
}
]
}
}