The reports in Toast Web include net sales values. You can also use
amount
values from the orders API to calculate the net sales. Toast
recommends using check.amount as the starting point for your
net sales calculation, as it already reflects discounts and service
charges.
|
Note |
|
The information in this section describes how your integration can calculate net sales using information that you get from the orders API. This section does not describe the behavior of the Toast POS or any reporting functions of the Toast platform. |
A typical definition of net sales is the total price paid by guests for menu item selections and services.
Your integration can calculate net sales from orders API information by including:
-
Prices of the menu item selections.
-
Discounts that were deducted from menu item selections and checks.
-
Non-gratuity service charges that were added to checks, with the exception of fundraising campaign service charges.
A typical calculation of net sales using orders API information does not include:
-
Taxes or other amounts that are paid to other entities, such as gratuity service charges and credit card tips.
-
Voided menu item selections, checks, and orders.
-
Deleted checks and orders.
-
Orders where
excessFoodistrue. -
Purchases of gift cards or other items where
deferredistruefor the selection. -
House account balance payments where
selectionTypeisHOUSE_ACCOUNT_PAY_BALANCE. -
Service charges where
serviceChargeCategoryisFUNDRAISING_CAMPAIGN, as these represent donations passed through to a third-party and is not restaurant revenue.
Include the orders API information for any orders and checks that are not excluded in the list above. For example, include open and unpaid orders in the net sales calculation for your integration.
|
Note |
|
Note that |
|
Note |
|
The information in this section describes how your integration can calculate net sales using information that you get from the orders API. This section does not describe the behavior of the Toast POS or any reporting functions of the Toast platform. |
Here is an overview of the process to calculate net sales for a group of orders using information from the orders API:
-
Use the Get multiple orders endpoint request to retrieve the orders for the period of time that you want to calculate. When using the
/ordersBulkendpoint, Toast support recommends using thebusinessDateparameter to align with what is shown in Toast Web reports. This ensures orders are correctly mapped to the location's business day, as determined by thecloseoutHourconfigured in the restaurants API. If you need to retrieve orders for a specific time period, such as 9:00 AM to 10:00 AM, use thestartDateandendDateparameters instead, which filter by order modification time. -
Add the order net sales values to get the total net sales.
During the calculation:
-
Exclude orders and checks where
voidedistrue. -
Exclude orders and checks where
deletedistrue. -
Exclude orders where
excessFoodistrue.
To calculate net sales for an order
-
For each non-voided, non-deleted check, start with
check.amount. This represents the total price of the check including discounts and service charges, excluding gratuity and taxes. -
As you review values in the
check.selections, subtract thepriceof any selection where:-
deferredistrue: Gift cards and other deferred revenue items whose value is realized at a later date. -
selectionTypeisHOUSE_ACCOUNT_PAY_BALANCE: House account balance payments represent a guest paying off an existing balance and are not new revenue.
-
-
As you review values in the
check.appliedServiceCharges, subtract thechargeAmountof any service charge whereserviceChargeCategoryisFUNDRAISING_CAMPAIGN. These charges go to a third-party and are not restaurant revenue. Note that these charges will havegratuityset tofalse, but should still be excluded. -
Reconcile refunds as you review values in the
check.paymentsand subtractrefund.refundAmountwhere a nestedrefundobject exists. Do not subtractrefund.tipRefundAmountas tips are not included in net sales. Alternatively, query the payments endpoint filtered byrefundBusinessDatefor the same business date to retrieve all refunded payments for reconciliation. -
Add the net sales values for all checks in the order.