---
title: "Create Bank Account"
method: POST
path: "/bankaccount"
---

# Create Bank Account

`POST /bankaccount`

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

## Request body

- object
  - `companyID` string, required — Company ID of employer
  - `id` string, required — Employee ID or Contractor ID of the worker who owns this bank account
  - `institution_name` string — Institution Name for bank account (Bank Name)
  - `account_number` string, required — Account number of bank account
  - `routing_number` string, required — Routing number of bank account
  - `type` 'checking' | 'savings', required — Account type. Can either be `checking` or `savings`
  - `nickname` string — Nickname of the bank account

## Response `200`

200

- object
  - `success` boolean
  - `data` object
    - `bankAccountID` string
    - `companyID` string
    - `id` string
    - `institution_name` string
    - `account_number` string
    - `routing_number` string
    - `type` string

## Other responses

- `400` — 400

---

[API](https://skmtc.net/zeal/apis/zeal-api.md) · [All operations](https://skmtc.net/zeal/apis/zeal-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zeal/zeal-api/revisions/01346dceb27d/schema)
