POST Open Table

Opens Table

URI template

v1/Table/{storeIdentifier}/{tableNumber}

Request Information

URI Parameters

NameTypeAdditional informationDescription
storeIdentifier integer

Required

StoreIdentifier

tableNumber integer

Required

ID of the table opened.

Body Parameters

TableName, EmployeeNumber and NumberOfGuests.

OpenTable
NameTypeAdditional informationDescription
TableName string

Required

Name of the table being opened

NumberOfGuests integer

Required

Range: inclusive between 1 and 2147483647

Number of guests for the table

EmployeeNumber integer

Required

Range: inclusive between 1 and 2147483647

Employee Number for the table

Request Formats

application/json, text/json

Sample:
{
  "TableName": "sample string 1",
  "NumberOfGuests": 2,
  "EmployeeNumber": 3
}

application/xml, text/xml

Sample:
<OpenTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StoreConnect.Models.Inbound">
  <EmployeeNumber>3</EmployeeNumber>
  <NumberOfGuests>2</NumberOfGuests>
  <TableName>sample string 1</TableName>
</OpenTable>

Response Information

Resource Description

OpenTableResponse
NameTypeAdditional informationDescription
TableId integer

None.

Table Id

CheckId integer

None.

Check Id

ApiResult StoreApiResponse

None.

The result returned by the Api

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.