The Shopify order API allows the specification of date-based query parameters (e.g. created_at_min). I was wondering what timezone is expected for those dates?
The Shopify order API allows the specification of date-based query parameters (e.g. created_at_min ).
Share
If you don’t provide a timezone Shopify will assume UTC. To make life easier, you can specify a timezone in the request, e.g.
2008-01-10T11:00:00-05:00N.B: Make sure you URL encode the timestamp before you pass it, otherwise you’ll run into issues with some characters (
+in particular).