GET ticket/tablebooking/freeTables/{yearMonthDay}/{startHHMM}/{stopHHMM}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| yearMonthDay | integer |
Required |
|
| startHHMM | integer |
Required |
|
| stopHHMM | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TBTable| Name | Description | Type | Additional information |
|---|---|---|---|
| tableId | integer |
None. |
|
| tableName | string |
None. |
|
| capacity | integer |
None. |
|
| reservationFee | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"tableId": 1,
"tableName": "sample string 2",
"capacity": 3,
"reservationFee": 4
},
{
"tableId": 1,
"tableName": "sample string 2",
"capacity": 3,
"reservationFee": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfTBTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models">
<TBTable>
<capacity>3</capacity>
<reservationFee>4</reservationFee>
<tableId>1</tableId>
<tableName>sample string 2</tableName>
</TBTable>
<TBTable>
<capacity>3</capacity>
<reservationFee>4</reservationFee>
<tableId>1</tableId>
<tableName>sample string 2</tableName>
</TBTable>
</ArrayOfTBTable>