v1

latestOpenAPI 3.0.12026-07-24310590875.6 KB
classifications

Create multiple chart of accounts

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.

post/v3/classifications/chart-of-accounts/bulk

Headers

sessionIdstring nullable

API session ID generated with /v3/login

Example:{{session_id}}
devKeystring nullable

Developer key generated with your BILL developer account

Example:{{developer_key}}

Request body

namestring required

Chart of accounts name

descriptionstring

Chart of accounts description

parentIdstring

BILL-generated ID of the parent chart of accounts. You can set this field if this chart of accounts is a child object.

Example request

[
  {
    "name": "Prepaid Expenses",
    "description": "Prepaid expenses for the upcoming quarter",
    "account": {
      "type": "EXPENSE",
      "number": "1-020"
    }
  }
]

Response

Create multiple chart of accounts response