Skip to main content
GET
/
company
Get company accounting configuration
curl --request GET \
  --url https://api.breezing.io/v1/company
{
  "success": true,
  "data": {
    "id": 123,
    "name": "<string>",
    "orgId": 123,
    "currency": "USD",
    "balanceSheetSetup": "<string>",
    "accountingMethod": "average",
    "accountingIsPerWallet": true,
    "feeAccount": {
      "type": "<string>",
      "name": "<string>",
      "code": "<string>"
    },
    "netGainAccount": {
      "type": "<string>",
      "name": "<string>",
      "code": "<string>"
    },
    "netLossAccount": {
      "type": "<string>",
      "name": "<string>",
      "code": "<string>"
    },
    "isControlAccount": true,
    "xeroLinked": true,
    "xeroOrgName": "<string>",
    "qboLinked": true,
    "qboOrgName": "<string>",
    "bexioLinked": true,
    "bexioOrgName": "<string>",
    "createdAt": 123,
    "updatedAt": 123,
    "accounts": "<unknown>",
    "xeroTrackingCategories": "<unknown>",
    "qboEntities": "<unknown>",
    "qboClasses": "<unknown>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://learn.breezing.io/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

org_id
string
required

Organization ID. Use GET /v1/companies to discover available org/company pairs.

Example:

"1"

company_id
string
required

Company ID. Use GET /v1/companies to discover available companies and their access levels.

Example:

"1"

Response

Company retrieved successfully

success
enum<boolean>
required
Available options:
true
data
object
required
Last modified on April 12, 2026