Skip to main content
An enum representing the possible status values for an order.
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.
I