Returns aggregated total values for advanced general ledger entries based on the specified filters.
Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
Query parameters
-
Entry date filter.Supports 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.
Internally split into a start/end date range and pushed down to the underlying report function. - Range (
-
Account name filter
-
Entry description filter
-
Whether the entry has warnings
-
Foreign currency code filter
-
Foreign total (debit + credit) filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Company currency total (debit + credit) filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Department name filter
-
Contact name filter
-
Article name filter
-
Order name filter
-
VAT code name filter
-
Department ID filter.
Supported values:-1— records where value is not assigned- ID
- Multiple values separated by
;
Examples:
- -1
- 10
- 10;15;20
-
Article category ID filter.
Supported values:-1— records where value is not assigned- ID
- Multiple values separated by
;
Examples:
- -1
- 10
- 10;15;20
-
Article ID filter.
Supported values:-1— records where value is not assigned- ID
- Multiple values separated by
;
Examples:
- -1
- 10
- 10;15;20
-
Contact ID filter.
Supported values:-1— records where value is not assigned- ID
- Multiple values separated by
;
Examples:
- -1
- 10
- 10;15;20
-
Order ID filter.
Supported values:-1— records where value is not assigned- ID
- Multiple values separated by
;
Examples:
- -1
- 10
- 10;15;20
-
Office ID filter.
Supported values:-1— records where value is not assigned- ID
- Multiple values separated by
;
Examples:
- -1
- 10
- 10;15;20
-
Purchase invoice number filter.
-
Purchase invoice journal entry type filter.
Values are
EMISSION,PAYMENT, orACCRUAL. -
Sales invoice number filter.
-
Sales invoice journal entry type filter.
Values are
EMISSION,PAYMENT, orACCRUAL.
curl \
--request GET 'https://wyzio.app/api-v1/ledger/advanced/total'
{
"id": 42,
"organizationId": 42,
"entryId": 42,
"entryDate": "2026-05-04T09:42:00Z",
"sortOrder": 42,
"entryType": "OPENING",
"accountId": 42,
"foreignCurrencyCode": "string",
"foreignDebit": 42.0,
"foreignCredit": 42.0,
"foreignTotal": 42.0,
"companyDebit": 42.0,
"companyCredit": 42.0,
"companyTotal": 42.0,
"account": {
"en": "string",
"fr": "string",
"de": "string",
"it": "string"
},
"description": "string",
"warnings": "string",
"hasWarnings": true,
"tenantId": 42
}