API help with filters

I’m not a dev, just to get that out of the way.

I’m practicing with Postman to GET orders with some filters. My end game is to find a way to be alerted by email when an order has a shipping country = GB but where the billing country is NOT GB. This is what I’ve written so far but it doesn’t work. I can’t work out the syntax and don’t know if I have ‘not equal to’ correct.

https://api.veeqo.com/orders?created_at=‘2024-05-13’&deliver_to/:country=“GB”&billing_address/:country=!“GB”

Thanks to anyone who is happy to help a non techie.

Hey @CAVH,
We don’t currently support filtering via delivery address at this point in time.
If you want to filter orders based on date, you can use the created_at_min parameter, like so:
https://api.veeqo.com/orders?created_at_min='2024-05-13'

For more info, check out the API documentation for the /orders endpoint.

Ah, ok. Thanks @fullsam