No content to show
User Activity
06-11-2022
And the answer to the original question (doing it with just the REST API): Which produces, via. the Python API: .myshopify.com/admin/api/2022-04/orders.json?status=%3Cbuilt-in+function+all%3E&created_at_min=2022-05-22&fulfillment_status=shipped Have ...
06-11-2022
Here's a solution: def get_orders(self, days_ago: int) -> dict:
"""
Get a list of shopify order resource objects.
"""
start_at = datetime.date.today() - datetime.timedelta(days=days_ago)
since = start_at.s...
06-11-2022
Update I am now working with the GraphQL library, but still struggling to filter by fulfillment status: graphql_query = (
"""{
orders(first: 100, query: "fulfillment_status:FULFILLED updated_at:>"""
+ since_dat...
06-10-2022
Hi. I'm wondering if I can Filter by multiple parameters with the REST APIFilter by fulfillment status with the REST APII'm using the Shopify python module and making requests like this: f = shopify.Order.find(created_at_min="2022-06-09",fulfilled_s...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
3399 | 06-11-2022 07:37 AM |