v1
latestOpenAPI 3.0.02026-07-224537337.5 KBCreate a Bank Account
Create a new bank account for a customer. Requires at least one of the customer's verification profiles to be approved.
post/v2/bank-account
Request body
Example request
{
"customerId": "customer_66c4168d418a410eae282b83883bdc39",
"bankName": "Bank of America",
"accountName": "Checking Account",
"currency": "usd",
"accountOwner": {
"accountHolderName": "Sarah Johnson",
"address": {
"line1": "233 South Wacker Drive",
"line2": "Suite 4700",
"city": "Chicago",
"state": "IL",
"postalCode": "60606",
"country": "USA"
},
"relationship": "self"
}
}Response
Example response
{
"id": "bankAccount_ce745ef7f3df4b9a8bff1301ce24b045",
"status": "active",
"customerId": "customer_66c4168d418a410eae282b83883bdc39",
"created": "2025-01-01T00:00:00Z",
"updated": "2025-01-01T00:00:00Z",
"bankName": "Bank of America",
"accountName": "Checking Account",
"currency": "usd",
"accountDetails": {
"accountNumber": "****7890",
"routingNumber": "021000021",
"accountType": "checking"
},
"accountOwner": {
"accountHolderName": "John Doe",
"relationship": "self"
}
}