# IntegerAttribute Criterion

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

IntegerAttribute Search Criterion

The `IntegerAttribute` Search Criterion searches for products by the value of their integer attribute.

## Arguments

- `identifier` - string representing the attribute
- `value` - string representing the attribute value

## Example

**XML**

```xml
<AttributeQuery>
    <Query>
        <IntegerAttributeCriterion>
            <identifier>size</identifier>
            <value>38</value>
        </IntegerAttributeCriterion>
    </Query>
</AttributeQuery>
```

**JSON**

```json
{
    "AttributeQuery": {
        "Query": {
            "IntegerAttributeCriterion": {
                "identifier": "size",
                "value": 38
            }
        }
    }
}
```
