GET a/PosOrders/GetOrdersAsync?start={start}&end={end}&interval={interval}
Get Orders information for the report period, grouped by report interval.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| start |
Start of report |
date |
Required |
| end |
End of report |
date |
Required |
| interval |
Interval to divide report |
time interval |
Required |
Body Parameters
None.
Response Information
Resource Description
Orders summary grouped by interval
Collection of PosOrdersDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| StartTime |
Start time of the data represented |
date |
None. |
| Period |
Period of time represented by this summary |
time interval |
None. |
| Amount |
Total Invoices for this time period |
decimal number |
None. |
| Count |
Transaction count for this time period |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"startTime": "2026-04-04T22:23:07.5496079+00:00",
"period": "00:00:00.1234567",
"amount": 3.0,
"count": 4.0
},
{
"startTime": "2026-04-04T22:23:07.5496079+00:00",
"period": "00:00:00.1234567",
"amount": 3.0,
"count": 4.0
}
]
application/xml, text/xml
Sample:
<ArrayOfPosOrdersDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loaded.WebApi.Models.POS.Orders">
<PosOrdersDTO>
<Amount>3</Amount>
<Count>4</Count>
<Period>PT0.1234567S</Period>
<StartTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-04-04T22:23:07.5496079Z</d3p1:DateTime>
<d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
</StartTime>
</PosOrdersDTO>
<PosOrdersDTO>
<Amount>3</Amount>
<Count>4</Count>
<Period>PT0.1234567S</Period>
<StartTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-04-04T22:23:07.5496079Z</d3p1:DateTime>
<d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
</StartTime>
</PosOrdersDTO>
</ArrayOfPosOrdersDTO>