# ProductName Criterion

> For the complete documentation index, see [llms.txt](https://doc.ibexa.co/en/saas/llms.txt).

ProductName Search Criterion

The `ProductName` Search Criterion searches for products by their names.

## Arguments

- `productName` - string representing the Product name, with `*` as wildcard

## Example

You can use this Search Criterion over the REST API, in the payload of the [`POST /product/catalog/products/view`](https://doc.ibexa.co/en/saas/api/rest_api/rest_api_reference/rest_api_reference.html#tag/Product/operation/ibexa.product_catalog.rest.products.view) request:

**XML**

```xml
<ProductQuery>
    <Filter>
        <ProductNameCriterion>sofa*</ProductNameCriterion>
    </Filter>
</ProductQuery>
```

**JSON**

```json
{
    "ProductQuery": {
        "Filter": {
            "ProductNameCriterion": "sofa*"
        }
    }
}
```
