New Shopify Certification now available: Liquid Storefronts for Theme Developers

Migrate API 2022-04 to 2022-07 - Fulfillment

Solved
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 !