Returns a list of chart of accounts entries based on advanced filters.
Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
Query parameters
-
Chart of accounts ID filter.
Multi-value supported. Example: value1;value2 -
Account number filter
-
Account name filter
-
End date filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- 01/01/2026..31/12/2026
- >=01/01/2026
- <=01/01/2026
- <>01/01/2026
Use <>01/01/2026 to return only records where the selected date is not equal to the filter date.
- Range (
-
Currency code filter
-
Currency ID filter.
Multi-value supported. Example: value1;value2 -
Account type filter
Values are
BALANCE_SHEET,PL, orSYSTEM. -
Business unit (department) ID filter.
Multi-value supported. Example: value1;value2 -
Whether this account is a cash account
-
Business unit (department) name filter
-
Start date filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- 01/01/2026..31/12/2026
- >=01/01/2026
- <=01/01/2026
- <>01/01/2026
Use <>01/01/2026 to return only records where the selected date is not equal to the filter date.
- Range (
-
Whether the account is active
-
Whether purchase invoices are enabled for this account
-
Whether sales invoices are enabled for this account
-
Whether expense reports are enabled for this account
-
Whether this account is usable as a payment method
-
Whether FX auto-adjustment is enabled for this account
-
Whether business unit split is enabled for this account
-
Account name filter in English
-
Account name filter in French
-
Account name filter in German
-
Account name filter in Italian
curl \
--request GET 'https://wyzio.app/api-v1/chart-accounts/advanced'
[
{
"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
}
]