Returns list of fixed assets report rows based on filter parameters
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. -
Fixed asset ID filter.
Multi-value supported. Example: value1;value2 -
Fixed asset name filter
-
Depreciation period 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 (
-
Depreciation period 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 (
-
Amortization/depreciation type filter
Values are
LINEAR_DEPRECIATION_DIRECT,NON_LINEAR_DEPRECIATION_DIRECT,LINEAR_DEPRECIATION_INDIRECT, orNON_LINEAR_DEPRECIATION_INDIRECT. -
Initial value 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 (
-
Accumulated amortization 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 (
-
Current net value 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 (
-
Depreciation chart of accounts ID filter.
Multi-value supported. Example: value1;value2 -
Department IDs filter.
Supported values:-1— records where value is not assigned- ID
- Multiple values separated by
;
Examples:
- -1
- 10
- 10;15;20
-
Office IDs filter.
Supported values:-1— records where value is not assigned- ID
- Multiple values separated by
;
Examples:
- -1
- 10
- 10;15;20
-
Report generation date.
curl \
--request GET 'https://wyzio.app/api-v1/fixed-assets'
[
{
"id": 42,
"organizationId": 42,
"name": "string",
"periodFrom": "2026-05-04T09:42:00Z",
"periodTo": "2026-05-04T09:42:00Z",
"period": "string",
"amortizationType": "LINEAR_DEPRECIATION_DIRECT",
"initialValue": 42.0,
"amortization": 42.0,
"actualValue": 42.0,
"departmentId": 42,
"officeId": 42,
"chartOfAccountId": 42,
"soldOrDeleted": true
}
]