# Pageable product list search endpoint

{% hint style="danger" %}
Implementation is **REQUIRED**
{% endhint %}

**resource**:  /product/search

**method**:  *POST*

**Request** :  [PageRequest](https://developer.smarts.ee/general/request-and-responses/pagerequest)<[ProductSearchRequest](https://developer.smarts.ee/general/request-and-responses/productsearchrequest)>

**Response**: [Pageable](https://developer.smarts.ee/general/request-and-responses/pageable)<[Product](https://developer.smarts.ee/general/data-object-description/product)>

{% tabs %}
{% tab title="Request Example" %}

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

{% endtab %}

{% tab title="Response Example" %}

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

{% endtab %}
{% endtabs %}
