> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sibipro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# OrderingOrderStatus

An enum representing the possible status values for an order.

```graphql theme={null}
enum OrderingOrderStatus {
  Approved
  At_Distribution
  Canceled
  Confirmed
  Delayed
  Delivered
  In_Process
  In_Transit
  Pending
  Picked_Up
  Processed
  Ready_For_Pickup
}
```

The status of the order. Possible values:

* **Approved** - The Order was approved. This status is short-lived and quickly transitions to a status of In\_Process and Processed.
* **At\_Distribution** - The Order is at the distribution center.
* **Canceled** - The Order has been canceled. This can happen either when a pending Order is canceled, or when an Order is canceled after being placed.
* **Confirmed** - The Order has been confirmed by the partner. A confirmation number should be present on the order at this point.
* **Delayed** - The Order has been delayed. Delayed orders are quickly resolved.
* **Delivered** - The Order has been delivered.
* **In\_Process** - The Order is in the process of being submitted to the partner. This status is short-lived and quickly transitions to a status of Processed or Delayed.
* **In\_Transit** - The Order is in transit to the fulfillment address.
* **Pending** - The Order still requires approval. At this point, an order can be canceled or approved.
* **Picked\_Up** - The Order has been picked up from the partner distribution center.
* **Processed** - The Order has been successfully processed.
* **Ready\_For\_Pickup** - The Order is ready for pickup at the partner distribution center fulfilling the order.
