# OrderDrop The `order` object describes a placed order, including its customer, line items, addresses, status, and pricing details. ## Usage Example ```liquid {%- comment -%} Show order summary {%- endcomment -%}

Order #{{ order.order_number }}
Status: {{ order.order_status }}
Total: {{ order.total }}

{%- comment -%} List order line items {%- endcomment -%} ``` ## Properties ### id Returns the order id. ### order_number Returns the order number. ### reference_number Returns the order reference number. ### is_cancelled Returns true if this order was cancelled. ### created_at Date when this order was created. ### confirmed_at Date when this order was confirmed. ### fulfilled_at Date when this order was fulfilled. ### customer [Customer](/reference/liquid/objects/store/customer/) linked to this order if any. ### discounts Order [discount lines](/reference/liquid/objects/store/order_discount/) ### tags Order tags. ### financial_status Returns paid if order is paid, otherwise not_paid. ### subtotal_price Returns the subtotal. ### total Returns the total. ### currency Returns the order currency. ### total_net_price Returns the net total. ### total_tax Returns the total tax. ### tax_lines Returns the [tax lines](/reference/liquid/objects/store/order_tax_line/). ### customer_note Returns the customer note. ### is_fulfilled Returns true if order is fulfilled. ### is_shipped Returns true if order is shipped. ### order_status Returns the order status. ### payment_methods Returns the [payment methods](/reference/liquid/objects/store/order_payment_method/) for this order. ### payment_fee Returns the total payment fee. ### shipping_methods Returns the [shipping methods](/reference/liquid/objects/store/order_shipping_method/) for this order. ### shipping_price Returns the total shipping costs. ### drop_point Returns the customer selected drop point. This is not necessarily the same where the order was shipped to. ### items Returns the [order line items](/reference/liquid/objects/store/order_line_item/). ### physical_items Returns the [order line items](/reference/liquid/objects/store/order_line_item/). ### num_items Returns the amount of line items in this order. ### shipping_address Returns the [shipping address](/reference/liquid/objects/store/address/) for this order. ### billing_address Returns the [billing address](/reference/liquid/objects/store/address/) for this order. ### shipments Returns the [shipments](/reference/liquid/objects/store/shipment/) for this order. ### returns Returns the [returns](/reference/liquid/objects/store/return/) for this order. ### receipt_url Returns the link for the receipt. ### return_form_url Returns the URL to the return form for this order, or null if returns are not available. ### metafields Nested metafields by namespace and key, e.g. `product.metafields.custom.vip`.