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

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?

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.

OK,then how we know the "cancel” status in apis when we cancel the order?

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?

fulfillment_status = partial

ok, thanks.