GET a/PosStaffItemGroupOrders/GetItemGroupOrdersForStaffMember?start={start}&end={end}&posIdentifier={posIdentifier}
Get Orders information for the report period and specified staff member, grouped by item group.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| start |
Report start |
date |
Required |
| end |
Report end |
date |
Required |
| posIdentifier |
Staff member POS identifier |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Queryable list of
Collection of PosItemsOrdersSummaryDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemName |
Gets or set the Name of the Item |
string |
None. |
| ItemPosIdentifier |
Gets or sets the POS specific identifier of this item |
string |
None. |
| ItemGroupName |
Gets or sets the Item Group Name |
string |
None. |
| ItemGroupIdentifier |
Gets or sets the POS specific identifier of the item group |
string |
None. |
| ItemCategoryName |
Gets or sets the Item Category name |
string |
None. |
| ItemCategoryIdentifier |
Gets or sets the POS specific identifier of the item category |
string |
None. |
| Amount |
Gets or sets the total dollar amount ordered for this item |
decimal number |
None. |
| Quantity |
Gets or sets the quantity of this item that was sold |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"itemName": "sample string 1",
"itemPosIdentifier": "sample string 2",
"itemGroupName": "sample string 3",
"itemGroupIdentifier": "sample string 4",
"itemCategoryName": "sample string 5",
"itemCategoryIdentifier": "sample string 6",
"amount": 7.0,
"quantity": 8.1
},
{
"itemName": "sample string 1",
"itemPosIdentifier": "sample string 2",
"itemGroupName": "sample string 3",
"itemGroupIdentifier": "sample string 4",
"itemCategoryName": "sample string 5",
"itemCategoryIdentifier": "sample string 6",
"amount": 7.0,
"quantity": 8.1
}
]
application/xml, text/xml
Sample:
<ArrayOfPosItemsOrdersSummaryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loaded.WebApi.Models.POS.Items">
<PosItemsOrdersSummaryDTO>
<Amount>7</Amount>
<ItemCategoryIdentifier>sample string 6</ItemCategoryIdentifier>
<ItemCategoryName>sample string 5</ItemCategoryName>
<ItemGroupIdentifier>sample string 4</ItemGroupIdentifier>
<ItemGroupName>sample string 3</ItemGroupName>
<ItemName>sample string 1</ItemName>
<ItemPosIdentifier>sample string 2</ItemPosIdentifier>
<Quantity>8.1</Quantity>
</PosItemsOrdersSummaryDTO>
<PosItemsOrdersSummaryDTO>
<Amount>7</Amount>
<ItemCategoryIdentifier>sample string 6</ItemCategoryIdentifier>
<ItemCategoryName>sample string 5</ItemCategoryName>
<ItemGroupIdentifier>sample string 4</ItemGroupIdentifier>
<ItemGroupName>sample string 3</ItemGroupName>
<ItemName>sample string 1</ItemName>
<ItemPosIdentifier>sample string 2</ItemPosIdentifier>
<Quantity>8.1</Quantity>
</PosItemsOrdersSummaryDTO>
</ArrayOfPosItemsOrdersSummaryDTO>