# Filter products by field updatedAt

**URL:** https://forum.shopware.com/t/filter-products-by-field-updatedat/100445
**Category:** Shopware 6 (English)
**Created:** [10. Juli 2023 um 07:51 UTC](https://forum.shopware.com/t/filter-products-by-field-updatedat/100445 "2023-07-10T07:51:21Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jrueda](https://avatars.discourse-cdn.com/v4/letter/j/a6a055/32.png) [@jrueda](https://forum.shopware.com/u/jrueda)
#### Post date: [10. Juli 2023 um 07:51 UTC](https://forum.shopware.com/t/filter-products-by-field-updatedat/100445/1 "2023-07-10T07:51:21Z")

</div>

I need to filter products by field „updatedAt“ using the Shopware APIs. After reading documentation, I am passing in the body of the request the following json data

{  
„filter“: [  
{  
„type“: „range“,  
„field“: „updatedAt“,  
„parameters“: {  
„gte“: „2023-03-29T20:54:41.244+00:00“  
}  
}  
]  
}

Although there are products whose updateAt value is earlier and later than the provided value, the request sends back all the products. What am I doing wrong?
