GET r/PosStaffTables?start={start}&end={end}&interval={interval}&posIdentifier={posIdentifier}
Get table information for the report period for an individual 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 |
| interval |
Report interval |
time interval |
Required |
| posIdentifier |
Staff Member POS identifier |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Tables summary grouped by staff member.
Collection of PosTableSummaryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| StartTime |
Gets or sets the Period start time of this summary. |
date |
None. |
| Period |
Gets or sets the length of time represented by this summary. |
time interval |
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
[
{
"startTime": "2026-04-04T22:26:01.7312199+00:00",
"period": "00:00:00.1234567",
"count": 3,
"heads": 4,
"orders": 5.0,
"discounts": 6.0,
"voids": 7.0,
"invoices": 8.0
},
{
"startTime": "2026-04-04T22:26:01.7312199+00:00",
"period": "00:00:00.1234567",
"count": 3,
"heads": 4,
"orders": 5.0,
"discounts": 6.0,
"voids": 7.0,
"invoices": 8.0
}
]
application/xml, text/xml
<ArrayOfPosTableSummaryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loaded.WebApi.Models.POS.Tables">
<PosTableSummaryDto>
<Count>3</Count>
<Discounts>6</Discounts>
<Heads>4</Heads>
<Invoices>8</Invoices>
<Orders>5</Orders>
<Voids>7</Voids>
<Period>PT0.1234567S</Period>
<StartTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-04-04T22:26:01.7312199Z</d3p1:DateTime>
<d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
</StartTime>
</PosTableSummaryDto>
<PosTableSummaryDto>
<Count>3</Count>
<Discounts>6</Discounts>
<Heads>4</Heads>
<Invoices>8</Invoices>
<Orders>5</Orders>
<Voids>7</Voids>
<Period>PT0.1234567S</Period>
<StartTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-04-04T22:26:01.7312199Z</d3p1:DateTime>
<d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
</StartTime>
</PosTableSummaryDto>
</ArrayOfPosTableSummaryDto>