Returns a list of journal 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
-
Page Number
Default value is
1. -
Field to sort by
-
Sorting direction
Values are
ASCorDESC. Default value isASC. -
Size per page
Default value is
60. -
Journal entry ID filter.
Multi-value supported. Example: value1;value2 -
Entry reference ID filter.
Multi-value supported. Example: value1;value2 -
Entry 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 (
-
Entry description filter
-
Journal entry type filter
Values are
OPENING,MANUAL,PURCHASE_INVOICE,SALES_INVOICE,SALARY_SLIP,STOCK,CLOSING,SYSTEM,SYSTEM_FX,SYSTEM_PFUV, orFIXED_ASSET. -
Entry amount 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 (
-
Debit accounts filter
-
Credit accounts filter
-
Whether the entry has warnings
-
Contact ID of the user who created the entry.
Multi-value supported. Example: value1;value2
curl \
--request GET 'https://wyzio.app/api-v1/journal'
[
{
"id": 42,
"entryId": 42,
"organizationId": 42,
"entryDate": "2026-05-04T09:42:00Z",
"description": "string",
"type": "OPENING",
"amount": 42.0,
"debitAccounts": "string",
"creditAccounts": "string",
"warnings": "string",
"isDeleted": true,
"hasWarnings": true,
"creatorContactId": 42,
"tenantId": 42
}
]