GET a/PosStaffOrders/GetStaffOrders?start={start}&end={end}&interval={interval}&posIdentifier={posIdentifier}

Get Orders information for the report period and specified staff member, grouped by report interval.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start

Report start time

date

Required

end

Report end time

date

Required

interval

Report interval

time interval

Required

posIdentifier

Staff Member POS identifier

string

Required

Body Parameters

None.

Response Information

Resource Description

Orders summaries for this staff member

Collection of PosOrdersDTO
NameDescriptionTypeAdditional 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:25:03.7343567+00:00",
    "period": "00:00:00.1234567",
    "amount": 3.0,
    "count": 4.0
  },
  {
    "startTime": "2026-04-04T22:25:03.7343567+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:25:03.7343567Z</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:25:03.7343567Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
    </StartTime>
  </PosOrdersDTO>
</ArrayOfPosOrdersDTO>