Skip to main content
POST
/
v1
/
businesses
/
{businessId}
/
bank-accounts
Create bank account
curl --request POST \
  --url https://api.halth.com/v1/businesses/{businessId}/bank-accounts \
  --header 'Content-Type: application/json' \
  --data '
{
  "routingNumber": "123456",
  "accountNumber": "123456789",
  "accountName": "Test Account",
  "country": "AU"
}
'
{
  "id": "<string>",
  "accountName": "<string>",
  "accountNumberLast4": "<string>",
  "routingNumber": "<string>",
  "fingerprint": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "country": "<string>"
}

Path Parameters

businessId
string
required
Example:

"biz_2yQwfVV3QvbDHdOBIZlCCf0956V"

Body

application/json
routingNumber
string
required

The routing number of the bank account

Required string length: 6
Example:

"123456"

accountNumber
string
required

The account number of the bank account

Required string length: 5 - 9
Example:

"123456789"

accountName
string
required

The name of the bank account

Example:

"Test Account"

country
string
required

The country of the bank account

Example:

"AU"

Response

201 - application/json
id
string
required
accountName
string
required
accountNumberLast4
string
required
routingNumber
string
required
fingerprint
string
required
createdAt
string<date-time>
required
country
string
required