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.

CreatedAtRange Criterion

The CreatedAtRange Search Criterion searches for products based on the date range when they were created.

Arguments

  • min - indicating the beginning of the date range, provided as a DateTimeInterface object
  • max - indicating the end of the date range, provided as a DateTimeInterface object

Example

1
2
3
4
5
6
7
8
<ProductQuery>
    <Filter>
        <CreatedAtRange>
            <min>2023-06-12</min>
            <max>2023-06-20</max>
        </CreatedAtRange>
    </Filter>
</ProductQuery>
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
    "ProductQuery": {
        "Filter": {
            "CreatedAtRange": {
                "min": "2023-06-12",
                "max": "2023-06-20"
            }
        }
    }
}