Hello, I'm currently trying to use the orders api to fetch orders whose ID is greater than a value and their modifiedTime is greater than a UNIX millisecond timestamp. When using the filters by themselves (not in conjunction), they work as expected. However, when I combine them, it gives me inaccurate results (it ignores the modifiedTime filter).
Sample API call with some values (merchant_id, access_token, order_id) subbed out:
`
https://api.clover.com/v3/merchants/MERCHANT_ID/orders?access_token=ACCESS_TOKEN&filter=id>CLOVER_ORDER_ID&filter=modifiedTime>1566492701000&limit=1000&offset=0`
In the above image, I'm getting some results with modifiedTime 155xxx even though I specified that I want results with modifiedTime > 156xxx