---
title: "Create multiple chart of accounts"
method: POST
path: "/v3/classifications/chart-of-accounts/bulk"
tags: ["classifications"]
---

# Create multiple chart of accounts

`POST /v3/classifications/chart-of-accounts/bulk`

Create multiple chart of accounts with one API request. You can create up to 50 chart of accounts with one `POST /v3/classifications/chart-of-accounts/bulk` request.

## Headers

- `sessionId` string, nullable — API session ID generated with `/v3/login`
- `devKey` string, nullable — Developer key generated with your BILL developer account

## Request body

- CreateClassificationChartOfAccountsRequestDto[]
  - `name` string, required — Chart of accounts name
  - `description` string — Chart of accounts description
  - `parentId` string — BILL-generated ID of the parent chart of accounts. You can set this field if this chart of accounts is a child object.
  - `account` object — Chart of accounts details
    - `type` 'UNSPECIFIED' | 'ACCOUNTS_PAYABLE' | 'ACCOUNTS_RECEIVABLE' | 'BANK' | 'COST_OF_GOODS_SOLD' | 'CREDIT_CARD' | 'EQUITY' | 'EXPENSE' | 'FIXED_ASSET' | 'INCOME' | 'LONG_TERM_LIABILITY' | 'OTHER_ASSET' | 'OTHER_CURRENT_ASSET' | 'OTHER_CURRENT_LIABILITY' | 'OTHER_EXPENSE' | 'OTHER_INCOME' | 'NON_POSTING', required — Type
    - `number` string — Number

## Response `201`

Create multiple chart of accounts response

- ClassificationChartOfAccountsBulkResponseDto — Response Dto for bulk classification chart of accounts.
  - `chartOfAccounts` ClassificationChartOfAccountsResponseDto[] — List of chart of accounts
    - `id` string — BILL-generated ID of the chart of accounts. The value begins with `0ca`.
    - `archived` boolean — Set as `true` if the chart of accounts is archived
    - `name` string — Chart of accounts name
    - `description` string — Chart of accounts description
    - `parentId` string — BILL-generated ID of the parent chart of accounts. You can set this field if this chart of accounts is a child object.
    - `account` object — Chart of accounts details
      - `type` 'UNSPECIFIED' | 'ACCOUNTS_PAYABLE' | 'ACCOUNTS_RECEIVABLE' | 'BANK' | 'COST_OF_GOODS_SOLD' | 'CREDIT_CARD' | 'EQUITY' | 'EXPENSE' | 'FIXED_ASSET' | 'INCOME' | 'LONG_TERM_LIABILITY' | 'OTHER_ASSET' | 'OTHER_CURRENT_ASSET' | 'OTHER_CURRENT_LIABILITY' | 'OTHER_EXPENSE' | 'OTHER_INCOME' | 'NON_POSTING' | 'UNDEFINED' — Type
      - `number` string — Number
    - `createdTime` string, date-time — Created date and time
    - `updatedTime` string, date-time — Updated date and time

## Other responses

- `4XX` — List of errors.
- `5XX` — List of errors.

---

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