Retrieve companies sales report, containing sales totals from today, this week, all time, and totals grouped by day. For the ādaysā attribute, this will retrieve sales across the last 30 days - anything beyond the 30 day point will be omitted. Possible payment method keys are: card, cash, bank, complimentary, refundOnline, refundOffline, offline, rebooking, paymentLink, reserveToPayOnsite, invoice, giftCard, cashoutOnline, cashoutOffline, ewalletOnline, ewalletOffline, refundEwalletOnline, refundEwalletOffline
The 'Bearer' token can be obtained from the token management interface or via the login endpoint using your admin user credentials.
When specified, only this epos shop's sales will be returned.
Successfully retrieved the sales report.
[
{
"currencySymbol": "Ā£",
"today": { "cash": 200, "card": 300, "total": 500 },
"thisWeek": { "cash": 200, "card": 300, "total": 500 },
"allTime": { "cash": 200, "card": 300, "total": 500 },
"days": [
{
"date": "2021-01-01",
"value": { "cash": 200, "card": 300, "total": 500 }
}
]
}
]