Zoho Books
Chart Of Accounts

Zoho Books Chart Of Accounts API

Sync chart of accounts data with Zoho Books through Apideck's unified API. One integration, instant access.

In Apideck, this resource is called Ledger Accounts (API: ledger-accounts)

Supported Operations for Zoho Books Chart Of Accounts

Full CRUD support available through our unified API

list
get
create
update
delete

Supported Fields

13 fields

Fields available for Zoho Books Chart Of Accounts

idcodeclassificationtypenamedescriptioncurrencylevelactivestatusparent_accountupdated_atcreated_at

API Model Preview

Sample response structure for chart of accounts

{
  "id": "12345",
  "code": "CODE-001",
  "classification": "standard",
  "type": "standard",
  "name": "Example Name",
  "description": "Example Description",
  "currency": "USD",
  "level": "string",
  "active": true,
  "status": "active",
  "parent_account": {
    "id": "12345"
  },
  "updated_at": "2024-01-15T10:30:00.000Z",
  "created_at": "2024-01-15T10:30:00.000Z"
}

Quick Start Example

Start syncing Zoho Books chart of accounts in minutes

Node.js
import { Apideck } from '@apideck/unify'

const apideck = new Apideck({
  apiKey: process.env.APIDECK_API_KEY,
  appId: 'YOUR_APP_ID',
  consumerId: 'YOUR_CONSUMER_ID'
})

// List chart of accounts from Zoho Books
const result = await apideck.accounting.ledgerAccounts.list({
  serviceId: 'zoho-books'
})

for await (const page of result) {
  console.log(page)
}
// Returns unified chart of accounts data

Zoho Books SDKs

Build Zoho Books integrations in your favorite language with our official SDKs.

Launch accounting integrations in weeks, not months

Sign Up