OrderStatus
Indicates the lifecycle stage an order is in
enum OrderStatus {
AUTHORIZED
CANCELLED
COMPLETE
DRAFT
FULFILLED
PARTIALLY_FULFILLED
PARTIALLY_FULFILLED_AWAITING_PAYMENT
PENDING
}
Values
OrderStatus.AUTHORIZED
Order has been authorized, waiting on fulfillment
OrderStatus.CANCELLED
Order has been completely cancelled
OrderStatus.COMPLETE
Order has been paid, and is now complete. This can also indicate that an order was partially or fully refunded, but that process is also complete.
OrderStatus.DRAFT
Initial state for an order, during which it can contain invalid or incomplete information
OrderStatus.FULFILLED
Order has been fulfilled, waiting on payment
OrderStatus.PARTIALLY_FULFILLED
Order has been partially fulfilled, and paid up for the currently fulfilled items
OrderStatus.PARTIALLY_FULFILLED_AWAITING_PAYMENT
Order has been partially fulfilled, waiting on other fulfillments and for the existing fulfillments payment
OrderStatus.PENDING
Order has been placed, waiting on authorization
Member of
Order
object