Guides
Tracking product updates
When you store product configurations in your own application, you might want to know when a product is changed so you can validate your configurations.
When you store configurations in your own application, you might need to know which products are out of date. In the /products
endpoint, there is a property per product with the updated date.
Example
{
"meta": {
...
},
"data": [
{
"code": "deco-fabric",
"article_group_name": "Material",
"unit_code": 1,
"translations": {
"en": {
"title": "Deko fabric",
"description": "Deko fabric"
},
"de": {
"title": "Dekostoff",
"description": "Dekostoff"
},
"nl": {
"title": "Dekostof",
"description": null
}
},
"created_at": "2018-01-08T15:59:59+0000",
"updated_at": "2022-07-19T07:16:37+0000"
},
{
...
},
]
}
To only retrieve updates after a certain date you can supply updated_at_from
& updated_at_to
parameters in the call. You'll only get the product updates between this date.