Create an Order
Explore how to create orders using the Square API by specifying product details, discounts, and taxes. Learn to clone existing orders and estimate pricing before purchase. This lesson helps you understand the steps to effectively handle orders including their creation, duplication, and calculation within a Python application.
We'll cover the following...
We'll cover the following...
Creating an order
The CreateOrder endpoint creates an order which includes information about the products and the settings to be applied to that purchase.
This endpoint requires an order object as a request parameter. This object might include the items, discounts, and taxes. The only required parameter for the CreateOrder endpoint is the location_id. The following widget contains the minimum code ...