FROM CACHE - zh-cn_header

how to know the order status cross the api with which words?

Lasem
新成员
14 0 0

In our order, we have filled in the waybill number and issued the goods;

However, this order is not "archived" in the background;

Through the order list interface, we did not find any field that can represent the order status.

How do I know the order status?

Lasem_0-1634119011393.png

 

5 条回复5

Tim_Mak
探路者
103 12 21

If you request orders through this endpoint: https://shopify.dev/api/admin-rest/2021-10/resources/order#[get]/admin/api/2021-10/orders.json

There is fulfillment_status parameter, which for this order would show "fulfilled".

For a new order it would return null.

Lasem
新成员
14 0 0
OK,then how we know the "cancel” status in apis when we cancel the order?
Lasem
新成员
14 0 0
Now there is another scenario. I have two SKUs for an order; What is the order status when one SKU has been shipped and the other has not been shipped?
Tim_Mak
探路者
103 12 21

fulfillment_status = partial

Lasem
新成员
14 0 0
ok, thanks.