Create Orders

You can create Order objects by calling the CreateOrder endpoint. Order objects can be created with any combination of line items, fulfillment objects, taxes, and discounts. They can also be created empty and updated with elements over time.

Sellers can view orders in the Seller Dashboard; however, Square pushes orders to the Seller Dashboard only if the orders meet specific conditions. For more information, see View orders in the Seller Dashboard or Square products.

Link to section

Create line items

You have two options for making line items:

  • You can make an order using a catalog_id, which is strongly recommended.
  • You can create line items ad hoc without referencing existing catalog items.
Link to section

Option 1: Define a line item for a catalog object

The following CreateOrder request creates an order using catalog items. The request specifies one line item with an optional modifier.

To test the scenario, you need an item (such as coffee) with one or more variations (such as small and large) and an item modifier (such as sugar and milk) in your catalog. For more information, see Build a Simple Catalog.

In addition to your credentials (access token), update the request by providing catalog_object_id values (for both the line item and modifier) and a location_id.

Create order

A line item can optionally have one or more modifiers. In the preceding example, the order contains a line item with a quantity of 1. The line item has a modifier, which has its own quantity field.

For example, suppose a restaurant offers a hamburger on the menu. When a customer orders this item, the restaurant records the purchase by creating an Order object with a line item (Hamburger). If the buyer wants a cheeseburger instead (a hamburger with cheese), the line item includes a modifier (cheese), with a quantity of 1.

If the customer wants extra cheese, the modifier quantity could be 2 (or more, depending on how many slices of cheese to add). Conversely, if the customer doesn't want any cheese, the modifier quantity would be 0.

Link to section

Option 2: Define a line item ad hoc

The following CreateOrder request creates an order with one ad hoc line item (hamburger) and one modifier (cheese):

Create order

Link to section

Add taxes and discounts

If an order is taxable — either a tax on the order total, or on individual line items — it needs to have taxing details. For discounts, you also need to add those details to the order. Before calling the CalculateOrder endpoint, be sure that you have added tax and discount details to the order. For more information, see Apply Taxes and Discounts.

Link to section

Add fulfillment details

To create a pickup order, you need to configure an OrderFulfillment object and set it in your order.

The following sample command creates a pickup order for a small coffee:

Create order

Link to section

View orders in the Seller Dashboard or Square products

An order appears in the Seller Dashboard (or Square products, such as Square Point of Sale) if both the following conditions are true:

  • The order includes fulfillment.
  • The order is paid.

If you're testing in the Square Sandbox, the order appears in the Seller Dashboard in Sandbox mode, but not in Production mode. For more information, see Square Sandbox.

Link to section

Calculate an order

While the CreateOrder endpoint creates an order (persists the order), the CalculateOrder endpoint enables applications to preview prices without creating an order. For example, Square Virtual Terminal uses this endpoint in the application flow to show pricing to the buyer without creating an order. The order is created only after the buyer proceeds to checkout. You can integrate CalculateOrder in your applications. For more information about Virtual Terminal, see Get Started with Virtual Terminal.

Pricing previews are also useful when applications integrate advanced pricing components, such as rewards and discounts. For example, an eCommerce application might integrate the Square loyalty program to offer buyer loyalty discounts. The application can use the CalculateOrder endpoint to show buyers a preview of applying loyalty points to their orders without locking loyalty points until the buyers are ready to pay for the orders.

In the CalculateOrder request, you provide the following:

  • A complete order - The order you provide can be an existing order or an order that hasn't been created.
  • Proposed rewards - The rewards to apply.

The endpoint creates a copy of the order (not persisted) with the specified discount applied. Applications can then show the order as a preview to help the buyer make a decision.

Link to section

Create a draft order

In the current implementation, the CreateOrder endpoint by default sets the state of the order it creates to OPEN. An OPEN state indicates that the order can be fulfilled and payment can be processed.

In some application scenarios, such as an eCommerce cart building application, buyers add items to the cart only to later abandon the order. In such scenarios, applications can create temporary orders by explicitly setting the order state to DRAFT in a CreateOrder request.

{ "order": { "line_items": …, "state": "DRAFT" } }

Orders in the DRAFT state cannot be fulfilled or paid. For example, Square products or the Payments API cannot process payments for a DRAFT order. When the buyer is ready to make the purchase, the application can call UpdateOrder to set the order state to OPEN so that the order can be fulfilled or payment can be processed.

{ "order": { "id": …, "version": …, "state": "OPEN" } }

Note that applications can use UpdateOrder to change the state and fulfill the order at the same time.

In the current implementation, the Orders API doesn't provide an endpoint to delete an order. However, Square reserves the right to delete DRAFT orders that haven't been updated in 30 days.

Applications can use the order state as a search filter in SearchOrders to retrieve only orders that can be fulfilled (where the state is OPEN) as shown:

In summary, a DRAFT order differs from an OPEN order as follows:

  • A DRAFT order cannot be fulfilled. You can create fulfillments, but they cannot progress beyond the initial PROPOSED fulfillment state.
  • A DRAFT order cannot be paid. That is, a DRAFT order doesn't have tenders added.
  • There's no guarantee you can retrieve a DRAFT order 30 days after creation.
  • A DRAFT order doesn't appear in Sales Summary reports in the Seller Dashboard.
Link to section

Clone an order

The CloneOrder endpoint enables applications to easily reorder without having to create an order from scratch. In the request, you provide an existing order number to clone.

You can clone any existing order regardless of the order state, but a cloned order has DRAFT as the initial state. The cloned order is like any other order created using the CreateOrder endpoint. The order follows the normal order lifecycle and can be modified like any other order.

When cloning an existing order, the endpoint copies only the applicable fields in the new order, such as:

  • merchant_id
  • location_id
  • customer_id
  • line_items (except for server-computed fields)
  • taxes
  • discounts
  • service_charges
  • pricing_options

Orders also have other fields that are specific to individual orders, such as fulfillments, tenders, metadata, reference_id, rewards, and the timestamp fields. These field values aren't copied.

For more information and an example, see CloneOrder.

Link to section

See also