Returns a list of stock report 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. -
Article ID filter.
Multi-value supported. Example: value1;value2 -
Report 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 (
-
Article name filter
-
Unit of measurement filter
Values are
UNIT,ML,DL,L,HL,G,KG,T,H,M,M_2,M_3,KM, orDAY. -
Article code filter
-
Total quantity 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 (
-
Total cost 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 (
-
Outgoing quantity 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 (
-
Incoming quantity 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 (
-
Projected quantity 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 ID filter
Multi-value supported. Example: value1;value2 -
Article category ID filter
Multi-value supported. Example: value1;value2 -
Office ID filter.
Multi-value supported. Example: value1;value2
curl \
--request GET 'https://wyzio.app/api-v1/stock-report'
[
{
"articleId": 42,
"date": "2026-05-04T09:42:00Z",
"articleName": {
"en": "string",
"fr": "string",
"de": "string",
"it": "string"
},
"measurement": "UNIT",
"organizationId": 42,
"articleIdToDisplay": "string",
"totalQuantity": 42.0,
"totalCost": 42.0,
"outQuantity": 42.0,
"inQuantity": 42.0,
"quantityProjection": 42.0,
"departmentId": 42.0,
"categoryId": 42.0,
"officeId": 42
}
]