A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hello,
I'm in charge of the application maintenance of several shopify applications.
I was using the following api: /orders/{order_id}/fulfillments.json
This one doesn't exist anymore with the version 2022-07. I can't find an API doing the same thing.
It says to use FulfillmentOrder but nothing interesting for me.
That is to say: create a fullfillment for 1 order.
Can you help me?
Thank you.
Solved! Go to the solution
This is an accepted solution.
@lmathieu This is so annoying when Shopify changes their API but doesn't provide any clear documentation for this. There is a guy who found a solution to this problem, you can check the solution detail here. Basically, whenever an order has been created in the store, shopify will automatically create a fulfillment order with status open.
Therefore, you have to find the fulfillment order id of your order, then you can call this endpoint to fulfilled your order
Can't anyone help me? 😞
This is an accepted solution.
@lmathieu This is so annoying when Shopify changes their API but doesn't provide any clear documentation for this. There is a guy who found a solution to this problem, you can check the solution detail here. Basically, whenever an order has been created in the store, shopify will automatically create a fulfillment order with status open.
Therefore, you have to find the fulfillment order id of your order, then you can call this endpoint to fulfilled your order
Tanks you !