Development discussions around Shopify APIs
To continue receiving payouts, you need to secure your account by turning on two-step authentication. If two-step authentication is not turned on your payouts will be paused. Learn more
i am wondering if it would be possible either through API or app to get a report of shipping volume over time. maybe with order status information, if order status would actually show whether or not an order has been shipped? trying to understand for finance reasons the specific volume of orders shipped over periods of time (specific to the day)
Using the REST API you could make two separate requests (since you apparently can't have multiple statuses in a single query). This would give you count of any shipped orders as well as the count of any partially-shipped orders. Combine those together and that would indicate the volume over the time period. Here's an example below, looking at a shop's orders for the current month.
https://{my_store}.myshopify.com/admin/api/2020-07/orders/count.json?fulfillment_status=shipped&crea...
https://{my_store}.myshopify.com/admin/api/2020-07/orders/count.json?fulfillment_status=partial&crea...
Or if you are directly in the Shopify web admin you can filter orders against a date range and fulfillment statuses to get a listing count. Like this for all partially or total shipped orders over the past week --> https://{my_shop}.myshopify.com/admin/orders?selectedView=all&fulfillment_status=shipped%2Cpartial&p...
Hope this helps!
User | RANK |
---|---|
5 | |
5 | |
4 | |
4 | |
4 |
Learn these 5 things I had to learn the hard way with starting and running my own business
By Kitana Jan 27, 2023Would you love to unleash the unbridled power of the Google Shopping Channel into your sho...
By Gabe Jan 6, 2023How can you turn a hobby into a career? That’s what Emmanuel did while working as a wa...
By Skye Dec 30, 2022