https://community.clover.com/questions/2490/webapi...
and
https://community.clover.com/questions/2913/rest-a...
I'm trying to return orders greater than or equal to (>=) a specific time, but it doesn't seem to be working. Specifically, the equal to part doesn't work:
https://apisandbox.dev.clover.com/v3/merchants/:mId/payments?filter=createdTime>=1548437394000
I know there is an object that exists that looks something like this:
{ "id": "XXXXXXXXXX", ... ... ... "createdTime": 1548437394000, "clientCreatedTime": 1548437393000, "modifiedTime": 1548437394000, etc }
If I reduce the time by 1 sec and just do a greater than (>) call like this then I DO get my result:
https://apisandbox.dev.clover.com/v3/merchants/:mId/payments?filter=createdTime>=1548437393000
So it seems that putting the equals sign breaks the operation. Do I need to escape or convert the characters to url encoding manually to make this work?
Thanks in advance.