GET a/PosStaffOrders/GetOrders?start={start}&end={end}
Get Orders information for the report period, grouped by staff member.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| start |
Report start time |
date |
Required |
| end |
Report end time |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
List of staff members and their Orders summaries
Collection of PosOrdersSummaryDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Label |
Gets or sets the Label for this data row |
string |
None. |
| Id |
Gets or sets the Id for this data row |
string |
None. |
| Quantity |
Gets or sets the Quantity or count for this data row |
decimal number |
None. |
| Amount |
Gets or sets the Dollar amount of orders for this data row |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"label": "sample string 1",
"id": "sample string 2",
"quantity": 1.1,
"amount": 3.0
},
{
"label": "sample string 1",
"id": "sample string 2",
"quantity": 1.1,
"amount": 3.0
}
]
application/xml, text/xml
Sample:
<ArrayOfPosOrdersSummaryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loaded.WebApi.Models.POS">
<PosOrdersSummaryDTO>
<Amount>3</Amount>
<Id>sample string 2</Id>
<Label>sample string 1</Label>
<Quantity>1.1</Quantity>
</PosOrdersSummaryDTO>
<PosOrdersSummaryDTO>
<Amount>3</Amount>
<Id>sample string 2</Id>
<Label>sample string 1</Label>
<Quantity>1.1</Quantity>
</PosOrdersSummaryDTO>
</ArrayOfPosOrdersSummaryDTO>