Pageable product list search endpoint
Pageable product search API
Implementation is REQUIRED
resource: /product/search
method: POST
Request : PageRequest<ProductSearchRequest>
{
"page": 1,
"limit": 50,
"orderBy": "ACS",
"orderFieldName": "barcode",
"request": {
"type": "SELF_SERVICE",
"categoryName": "Teravi",
"langCode": "ET",
"personId": "1abcsd",
"institutionId": "1ABCS"
},
"loyaltyCards": [
{
"id" : "1aBc",
"cardNumber": "1234567",
"useBonusOnPayment": false
}
]
}
{
"result": [
{
"id": "1ABC",
"barcode": "ABC-abc-1234",
"type": "SINGLE",
"translatableName": {
"originalText": "Helen Oats 500g",
"translations": [
{
"ET": "Helen kiirkaeraheleb 500g"
}
]
},
"translatableDescription": {
"originalText": "Oats made in Estonia",
"translations": [
{
"ET": "Eestis toodetud kiirkaerahelbed"
}
]
},
"quantity": {
"unit": "KILOGRAM",
"value": "1.03"
},
"price": {
"addition": {
"type": "DSC",
"sum": 1,
"rate": 10
},
"vat": {
"sumWithVAT": 12,
"sumWithoutVAT": 10,
"VATSum": 2,
"VATRate": 20
},
"total": 12
},
"weightItem": false,
"information": {
"imageUrl": "https://my.outs"
},
"inspections": [
{
"action": "INSPECT",
"type" : "MIN_AGE",
"age": 18
},
{
"action": "RESTICT",
"type": "MAX_TIME",
"time": "22:00:00",
"timezone": "Europe/Tallinn"
}
],
"campaigns": [
{
"name": "Big Discount Campaign",
"code": "B00000000501",
"operation": "total >= 50 ? total * 0.98 : total"
}
],
"subProducts": null,
"categories": [
{
"id": "1B",
"translatableName": {
"originalText": "Cereals",
"translations": [
{
"ET": "Teraviljad"
}
]
},
"numberOfProducts":500,
"parentId": "1A"
}
]
}
],
"lastPage": 100,
"totalCount": 500
}
Last updated