# List Product Variants Get all your product variants. Endpoint: POST /api/v1/article-combination/search Version: 1.0 ## Request fields (application/json): - `condition` (object) Condition to filter results - `condition.field` (string) Field name to apply the condition to Example: "name" - `condition.value` (object) Value to compare against the field Example: "Example Value" - `condition.type` (string) Relational operator for the condition Enum: "BETWEEN", "EQ", "LT", "LTE", "GT", "GTE", "NE", "LIKE", "START", "FINISH", "IN", "NIN", "NLIKE", "LENGTH" - `condition.endValue` (object) End value for range conditions Example: 100 - `condition.innerConditions` (array) Nested conditions for complex queries - `condition.conditionType` (string) Type of condition for combining multiple conditions Enum: "AND", "OR" - `condition.empty` (boolean) Indicates if the condition is empty - `condition.compareFields` (boolean) Indicates if comparing between fields - `sortCriteria` (array) List of sorting criteria to apply - `sortCriteria.sortField` (string) Field name to sort by Example: "name" - `sortCriteria.sortDirection` (string) Sort direction (ascending or descending) Enum: "ASC", "DESC" - `pageNumber` (integer, required) Page number to retrieve (0-based) - `pageSize` (integer, required) Number of items per page Example: 20 ## Response 200 fields (application/json): - `data` (array, required) List of data items for the current page - `data.id` (integer, required) Unique identifier of the entity Example: 1 - `data.article` (string) Article code Example: 123456 - `data.articleId` (integer) Internal article identifier Example: 876 - `data.articleType` (string) Type of article Enum: "PACKAGING", "EXPENSE", "RAW_MATERIAL", "MERCHANDISE", "OTHERS", "FINISHED_PRODUCT", "SEMI_FINISHED", "SERVICE", "ADVERTISING" - `data.unitWarehouseId` (integer) Warehouse ID where the item is stored Example: 55 - `data.articleDescription` (string) Description of the article Example: "Blue cotton T-shirt" - `data.attribute1` (object) First attribute of the article. See ApiAttributeListReadDto - `data.attribute1.code` (string, required) Unique code for the attribute. Example: "COLOR" - `data.attribute1.description` (string, required) Description of the attribute. Example: "Color of the item" - `data.attribute2` (object) Second attribute of the article. See ApiAttributeListReadDto - `data.attribute3` (object) Third attribute of the article. See ApiAttributeListReadDto - `data.attribute4` (object) Fourth attribute of the article. See ApiAttributeListReadDto - `data.attribute5` (object) Fifth attribute of the article. See ApiAttributeListReadDto - `data.seasonId` (integer) Season identifier Example: 1 - `data.season` (string) Season name Example: "Summer 2025" - `data.category1` (string) First article category Example: "Men" - `data.category2` (string) Second article category Example: "Shirts" - `data.category3` (string) Third article category Example: "Cotton" - `data.category4` (string) Fourth article category Example: "Casual" - `data.description` (string) Combination description Example: "Casual blue T-shirt, 100% cotton" - `data.active` (boolean) Indicates if the article is active Example: true - `data.articleVatType` (string) VAT type for the article Enum: "SUPER_REDUCED", "REDUCED", "GENERAL", "EXEMPT" - `data.assortment` (object) Assortment information. See ApiAssortmentListReadDto - `data.assortment.code` (string) Assortment code. Example: "ASRT123" - `data.assortment.title` (string) Title of the assortment. Example: "Summer Collection" - `data.assortment.sizeRange` (string) - `data.sizeRange` (object) Size range information. See ApiSizeRangeListReadDto - `data.sizeRange.code` (string, required) - `data.sizeRange.description` (string, required) - `data.serialNumberControl` (boolean) Indicates if serial number control is used - `data.batchControl` (boolean) Indicates if batch control is used - `data.ean` (string) EAN code of the product variant Example: 8437000000012 - `page` (integer, required) Current page number (0-based) - `total` (integer, required) Total number of items across all pages Example: 150 - `pages` (integer, required) Last page number (0-based) Example: 14 - `size` (integer, required) Number of items per page Example: 10