An order is a purchase made by a customer. It contains information about the order, including the individual line items. Each line item contains a product_id that can be passed to the /cart-api/products/{product_id} for more details. The line item may also include the item’s sku, the parent product’s ID, and the parent product’s sku.

Order Statuses (in order of lifecycle)

StatusDefinition
openOrder has been placed.
confirmedOrder has been confirmed by the cart system.
processingOrder is being processed by the warehouse.
partially_fulfilledOrder has been partially fulfilled.
fulfilledOrder has been fulfilled and shipped.
backorderedOrder cannot be fulfilled because of a lack of available inventory.
exceptionThere is an issue with the order.
cancelledOrder has been cancelled by either the platform, warehouse, or customer.
otherStatus of the order can’t be determined. Often due to a custom status being used. See the raw_status field for more information