Pageable product list search endpoint

Pageable product search API

Implementation is REQUIRED

resource: /product/search

method: POST

Request : PageRequest<ProductSearchRequest>

Response: Pageable<Product>

{
    "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
        }
    ]
}

Last updated