All things Shopify and commerce
Hello all,
I am working on to delete product automatically from admin when order fulfilled. I have getting all orders using api but I want only fulfilled orders for that I am using following line of api, for this I can not get fulfilled orders.
Can anyone please help me in this issue ?
$getOrders = shopify_call($access_token, $shop, "/admin/api/2023-04/orders.json", array("fulfillment_status" => 'partial'), 'GET');
If you want to get only the orders that are fulfilled, you should filter the orders using the value 'fulfilled'.
$getOrders = shopify_call($access_token, $shop, "/admin/api/2023-04/orders.json", array("fulfillment_status" => 'fulfilled'), 'GET');
Hello @okur90 ,
I have tried this way but it is not working. It display all orders except fulfilled and I want only fulfilled orders.
Have you managed to find the solution? I am having the same problem...
you should use query params in the request, for example:
-> yourstore.com/2023-10/orders.json, won't bring fulfilled orders, so you should do:
-> yourstore.com/2023-10/orders.json?status=any <- the status is the "secret"
By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024