Filter products by field updatedAt

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?