v1

latestOpenAPI 3.1.02026-08-065163115.0 KB
Accounting Codes

List accounting codes

Returns a paginated list of GL codes for the given business.

get/v1/businesses/{client_id}/accounting-codes

Path parameters

client_idinteger required
Example:123

The ID of the business.

Query parameters

offsetinteger
Example:50

Offset to retrieve items from.

limitinteger
Example:50

Number of items per page.

Response

OK

countinteger

Total number of GL codes.

nextstring nullable

Pagination cursor for the next page.

previousstring nullable

Pagination cursor for the previous page.

Example response

{
  "count": 100,
  "next": "limit=50&offset=50",
  "results": [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "code": "4000",
      "name": "Office Expenses",
      "created": "2026-01-15T10:30:00Z",
      "updated": "2026-01-15T10:30:00Z"
    }
  ]
}