GET r/PosStaffTables?start={start}&end={end}
Get table information for the report period, grouped by staff member.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| start |
Start of report period. |
date |
Required |
| end |
End of report period. |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
Tables summary grouped by staff member.
Collection of PosStaffTableDto| Name | Description | Type | Additional information |
|---|---|---|---|
| StaffName |
Gets or sets the name of the staff member |
string |
None. |
| StaffPosIdentifier |
Gets or sets the POS specific identifier of the staff member |
string |
None. |
| Count |
Gets or sets the total number of tables opened in the period. |
integer |
None. |
| Heads |
Gets or sets the total number of heads (people at tables) in this period. |
integer |
None. |
| Orders |
Gets or sets the total dollar amount ordered on tables in this period. |
decimal number |
None. |
| Discounts |
Gets or sets the total dollar amount discounted on tables in this period. |
decimal number |
None. |
| Voids |
Gets or sets the total dollar amount voided on tables in this period. |
decimal number |
None. |
| Invoices |
Gets or sets the total dollar amount invoiced on tables in this period. |
decimal number |
None. |
Response Formats
application/json, text/json
[
{
"staffName": "sample string 1",
"staffPosIdentifier": "sample string 2",
"count": 3,
"heads": 4,
"orders": 5.0,
"discounts": 6.0,
"voids": 7.0,
"invoices": 8.0
},
{
"staffName": "sample string 1",
"staffPosIdentifier": "sample string 2",
"count": 3,
"heads": 4,
"orders": 5.0,
"discounts": 6.0,
"voids": 7.0,
"invoices": 8.0
}
]
application/xml, text/xml
<ArrayOfPosStaffTableDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loaded.WebApi.Models.POS.Tables">
<PosStaffTableDto>
<Count>3</Count>
<Discounts>6</Discounts>
<Heads>4</Heads>
<Invoices>8</Invoices>
<Orders>5</Orders>
<Voids>7</Voids>
<StaffName>sample string 1</StaffName>
<StaffPosIdentifier>sample string 2</StaffPosIdentifier>
</PosStaffTableDto>
<PosStaffTableDto>
<Count>3</Count>
<Discounts>6</Discounts>
<Heads>4</Heads>
<Invoices>8</Invoices>
<Orders>5</Orders>
<Voids>7</Voids>
<StaffName>sample string 1</StaffName>
<StaffPosIdentifier>sample string 2</StaffPosIdentifier>
</PosStaffTableDto>
</ArrayOfPosStaffTableDto>