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.

CreatedAt Criterion

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

Arguments

  • createdAt (PHP), created_at (REST) - indicating the date that should be matched, provided as a DateTimeInterface object in PHP, or as a string acceptable by DateTime constructor in REST
  • operator - Operator constant (EQ, GT, GTE, LT, LTE) in PHP or its value in REST

Example

You can use this Search Criterion over the REST API, in the payload of the POST /product/catalog/products/view request:

1
2
3
4
5
6
7
8
<ProductQuery>
    <Filter>
        <CreatedAtCriterion>
            <created_at>2023-06-12</created_at>
            <operator>>=</operator>
        </CreatedAtCriterion>
    </Filter>
</ProductQuery>
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  "ProductQuery": {
    "Filter": {
      "CreatedAtCriterion": {
        "created_at": "2023-06-12",
        "operator": ">="
      }
    }
  }
}