Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Migrate API 2022-04 to 2022-07 - Fulfillment

Solved

Migrate API 2022-04 to 2022-07 - Fulfillment

lmathieu
Tourist
5 0 3

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.

Accepted Solution (1)
FNg
Shopify Partner
1 1 1

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 

View solution in original post

Replies 3 (3)

lmathieu
Tourist
5 0 3

Can't anyone help me? 😞

FNg
Shopify Partner
1 1 1

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 

lmathieu
Tourist
5 0 3

Tanks you !