# ProductCode Criterion

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

ProductCode Search Criterion

The `ProductCode` Search Criterion searches for products by their codes.

## Arguments

- `productCode` - array of strings representing the product codes(s)

## Example

**XML**

```xml
<ProductQuery>
    <Filter>
        <ProductCodeCriterion>ski</ProductCodeCriterion>
        <ProductCodeCriterion>snowboard</ProductCodeCriterion>
    </Filter>
</ProductQuery>
```

**JSON**

```json
{
    "ProductQuery": {
        "Filter": {
            "ProductCodeCriterion": [
                "ski",
                "snowboard"
            ]
        }
    }
}
```
