Hi all, I'm making a call to get the orders for a single day. In my example, that day is Jan 17. I have been told that the filter query param should be used only once, even when creating complete expressions. As a result, the URL that I am invoking to get orders for Tuesday, Jan 17th is the following:
https://api.clover.com/v3/merchants/{merchant id}/orders?access_token={redacted}&limit=1000&expand=lineItems&filter=clientCreatedTime%3E=1484640000000&clientCreatedTime%3C=1484726399999
The resulting list actually contains all order since the start date. It is as if the clientCreatedTime<= clause is ignored. Has anyone else seen this behavior? Can a Clover dev confirm this, or if my understanding is incorrect, please show me the proper way to create this query?
Thanks in advance!