Restrict Api Orders Result?

I’m having trouble pulling specified sets of Orders through the API



The docs state the following:

[quote]

[size=3][font=arial,helvetica,sans-serif]Filtering

[color=#555555]It is possible to send additional URL parameters to particularize the selection.[/color]

[color=#555555]For example, you get all products with non-free shipping:[/color]

[color=#555555]curl --user admin@example.com:APIkey -X GET [/color][color=#555555]‘http://example.com/api/products?free_shipping=N’[/color][/font][/size][/quote]



I can’t get this to work reliably for Orders.



These parameters work:

/api/orders?status=X

/api/orders?user_id=X



These do not:

/api/orders?order_id>X

/api/orders?timestamp=X

/api/orders?timestamp>X

/api/orders?firstname=X

/api/orders?total=X

/api/orders?total>X



Does anyone know a way to retrieve only orders placed after a certain date, or newer than a specified order number?





thanks,

Don

Hi Don,



Did you manage to work out the filtering by timestamp or order_id?



Or does anyone else know how?