v1

latestOpenAPI 3.1.02026-07-2414339465.7 KB

Create Bank Account

Create's a bank account for a specified worker in Zeal.

post/bankaccount

Request body

companyIDstring required

Company ID of employer

idstring required

Employee ID or Contractor ID of the worker who owns this bank account

institution_namestring

Institution Name for bank account (Bank Name)

account_numberstring required

Account number of bank account

routing_numberstring required

Routing number of bank account

type'checking' | 'savings' required

Account type. Can either be checking or savings

nicknamestring

Nickname of the bank account

Response

200

successboolean

Example response

{
  "success": true,
  "data": {
    "bankAccountID": "1b5n28nrideucd24",
    "companyID": "0987654321",
    "id": "0982354562734",
    "institution_name": "Chase",
    "account_number": "1243686537",
    "routing_number": "09876283743",
    "type": "checking"
  }
}