---
title: "Create a bank account"
method: POST
path: "/bank-accounts"
tags: ["Bank Accounts"]
---

# Create a bank account

`POST /bank-accounts`

Create a new bank account for the authenticated team.

## Request body

- object — Schema for creating a new bank account.
  - `name` string, required — The name of the bank account.
  - `currency` string — The currency code for the bank account (ISO 4217).
  - `manual` boolean — Whether the bank account is a manual account.

## Response `201`

Bank account created

- object — A single bank account object response.
  - `id` string, uuid, required — Unique identifier for the bank account.
  - `name` string, nullable, required — Name of the bank account.
  - `currency` string, nullable, required — Currency code of the bank account (e.g., USD, EUR).
  - `type` string, nullable, required — Type of the bank account (e.g., depository, credit).
  - `enabled` boolean, required — Whether the bank account is enabled.
  - `balance` number, nullable, required — Current balance of the bank account.
  - `manual` boolean, nullable, required — Whether the bank account is a manual account.

## Other responses

- `default` — An error occurred

---

[API](https://skmtc.net/midday-ai/apis/midday-api.md) · [All operations](https://skmtc.net/midday-ai/apis/midday-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/midday-ai/midday-api/versions/c0df9243c1b0/schema)
