v1
latestOpenAPI 3.0.02026-07-2671142187.3 KBCustomer
Create a bank account.
post/customers/{customerId}/bank-accounts
Path parameters
customerIdnumber required
Customer ID.
Request body
Example request
{
"accountCorporate": 1,
"accountType": 2,
"bankAccountNumber": "123456789",
"bankFinancialNumber": "123",
"bankTransitNumber": "12345",
"city": "Calgary",
"countryAlpha2": "CA",
"firstName": "John",
"lastName": "Doe",
"postalCode": "T2P5E9",
"provinceAlpha2": "AB",
"streetAddress": "440 2 Ave SW"
}Response
Successfully created new bank account. A bank authorization was also emailed to the customer.
Example response
{
"data": {
"message": "Successfully created new bank account with ID #12345. A bank authorization email was also emailed to customer@helcim.com.",
"bankAccount": {
"id": 12345
}
}
}