# List Sale Prices Get all your sale prices. Endpoint: POST /api/v1/item-sale-rate/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.rateId` (integer) Rate identifier. Example: 10 - `data.rateDescription` (string) Description of the rate. Example: "Spring 2025 Sale" - `data.currencyDescription` (string) Description of the currency for the rate. Example: "Euro" - `data.currencyNomenclature` (string) Currency code or nomenclature (ISO, etc). Example: "EUR" - `data.unitWarehouseDescription` (string) Description of the unit warehouse. Example: "Main" - `data.articleCombinationId` (integer) Identifier of the article combination. Example: 25 - `data.articleCombinationDescription` (string) Description of the article combination. Example: "Pack 3xBlue" - `data.sizeRangeId` (integer) ID of the size range. Example: 5 - `data.sizeRangeDescription` (string) Description of the size range. Example: "Sizes S-L" - `data.price` (number) Price for the rate. Example: 22.5 - `data.price2` (number) Secondary price for the rate. Example: 21.75 - `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