Returns a list of chart of accounts entries based on the specified filters.
Only one filter parameter may be specified. If a filter parameter is provided, its value must be true.
Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
Query parameters
-
Whether to include balance sheet accounts
-
Whether to include P&L accounts
-
Whether to include system accounts
-
Whether to include accounts usable as a payment method
-
Whether to include accounts usable for purchase invoices
-
Whether to include accounts usable for sales invoices
-
Whether to include accounts usable for expense reports
GET
/api-v1/chart-accounts/coa-param
curl \
--request GET 'https://wyzio.app/api-v1/chart-accounts/coa-param'
Response examples (200)
[
{
"id": 42,
"organizationId": 42,
"accountNumber": 42,
"name": {
"en": "string",
"fr": "string",
"de": "string",
"it": "string"
},
"endDate": "2026-05-04T09:42:00Z",
"currency": "string",
"currencyId": 42,
"type": "string",
"departmentId": 42,
"warnings": "string",
"isCashAccountEnabled": true,
"hasDepreciation": true,
"isPurchaseInvoicesEnabled": true,
"isActive": true
}
]