Receiving empty json after filtering by date (created_at_|updated_at_min|max)

Hi there.

I am trying to get the first order by using this API code using python:

url = f"https://{API_KEY}:{TOKEN}@{STORE}.myshopify.com/admin/api/2022-04/orders.json?limit=1&status=any&processed_at_max=2020-12-31T00:01:00+01:00"

When using the date filter I do receive an empty answer but it doesn´t happen when I don´t use the filter.

I do have same problem while trying to get filtered products or draft orders and by using “created_at_min|max” or “updated_at_min|max” as filter.

I did some research and I saw some post with people with the same problem but none of their solutions worked for me.

So far I tried:

1- Changing the “+” of the timezone with “%2B”

2- Changing the order of the filter “status=any”

Note: This request worked for me in the past so I am not sure what the problem might be.