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.

ProductName Criterion

The ProductName Search Criterion searches for products by their names.

Arguments

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

Example

1
2
3
4
5
<ProductQuery>
    <Filter>
        <ProductNameCriterion>sofa*</ProductNameCriterion>
    </Filter>
</ProductQuery>
1
2
3
4
5
6
7
{
    "ProductQuery": {
        "Filter": {
            "ProductNameCriterion": "sofa*"
        }
    }
}