Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

IntegerAttribute 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

REST API

1
2
3
4
5
6
7
8
<AttributeQuery>
    <Query>
        <IntegerAttributeCriterion>
            <identifier>size</identifier>
            <value>38</value>
        </IntegerAttributeCriterion>
    </Query>
</AttributeQuery>
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
    "AttributeQuery": {
        "Query": {
            "IntegerAttributeCriterion": {
                "identifier": "size",
                "value": 38
            }
        }
    }
}