Reports

Get Sales Report

GET https://api.rnetpos.com/v1/reports/sales

Retrieves sales report by the following filters and grouping:

Query Parameters

Name
Type
Description

from_date

string

from date

to_date

string

to date

order_by

array

["group asc"/"date desc"]

barcode

string

sales report for specific item

store_no

string

store number

group_by

array

["store"/"tender_type"/"department"/month"]

[
    {
        "GroupByType": "department",
        "GroupByValue": "Toys",
        "PriceBeforeTax" : 12345.5,
        "Price" : 12345.5,
        "Qty" : 145.5
    },
    {
        "GroupByType": "department",
        "GroupByValue": "Food",
        "PriceBeforeTax" : 12345.5,
        "Price" : 12345.5,
        "Qty" : 145.5
    }
]

Last updated

Was this helpful?