Returns articles localized using the default language of the contact specified in request 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. -
Contact identifier used to determine localization language
-
Unique identifier of the article
Multi-value supported. Example: value1;value2 -
Type of the article
Values are
PRODUCT,SERVICE, orBUNDLE. -
Identifier of the article
-
Article's primary name translation
-
Article's detailed description translation
-
Unique identifier of the article's category
Multi-value supported. Example: value1;value2 -
Name of the category
-
Article's measurement type
Values are
UNIT,ML,DL,L,HL,G,KG,T,H,M,M_2,M_3,KM, orDAY. -
Cost per unitSupports 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 (
-
Article's unit priceSupports 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 (
-
VAT rate identifier
-
Is the status of the article archived?
-
Article's EAN code
-
Quantity of the article.
Applicable only when articleType = PRODUCT -
Start date for the article validitySupports 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 (
-
End date for the article validitySupports 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 (
-
Weight of the article in Kg.
Applicable only when articleType = PRODUCT
curl \
--request GET 'https://wyzio.app/api-v1/article/contact-lang'
[
{
"id": 42,
"type": "PRODUCT",
"articleId": "string",
"name": {
"en": "string",
"fr": "string",
"de": "string",
"it": "string"
},
"articleIdName": {
"en": "string",
"fr": "string",
"de": "string",
"it": "string"
},
"description": {
"en": "string",
"fr": "string",
"de": "string",
"it": "string"
},
"categoryId": 42,
"categoryName": "string",
"measurement": "UNIT",
"unitCost": 42.0,
"unitPrice": 42.0,
"vatRateId": 42,
"archived": true,
"ean": "string",
"creatorContactId": 42,
"quantity": 42.0,
"startDate": "2026-05-04T09:42:00Z",
"endDate": "2026-05-04T09:42:00Z",
"weightKg": 42.0
}
]