POST api/TouchToOrder/GetTableMap?RestaurantID={RestaurantID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RestaurantID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TableInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Name | string |
None. |
|
| Data | string |
None. |
|
| Fill | string |
None. |
|
| Height | decimal number |
None. |
|
| Left | decimal number |
None. |
|
| Top | decimal number |
None. |
|
| Width | decimal number |
None. |
|
| Stroke | string |
None. |
|
| Guid | string |
None. |
|
| StrokeMiterLimit | integer |
None. |
|
| PriceMultiplier | decimal number |
None. |
|
| FontSize | decimal number |
None. |
|
| BlockName | string |
None. |
|
| Floor | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Name": "sample string 2",
"Data": "sample string 3",
"Fill": "sample string 4",
"Height": 5.1,
"Left": 6.1,
"Top": 7.1,
"Width": 8.1,
"Stroke": "sample string 9",
"Guid": "sample string 10",
"StrokeMiterLimit": 11,
"PriceMultiplier": 12.1,
"FontSize": 13.1,
"BlockName": "sample string 14",
"Floor": "sample string 15"
},
{
"ID": 1,
"Name": "sample string 2",
"Data": "sample string 3",
"Fill": "sample string 4",
"Height": 5.1,
"Left": 6.1,
"Top": 7.1,
"Width": 8.1,
"Stroke": "sample string 9",
"Guid": "sample string 10",
"StrokeMiterLimit": 11,
"PriceMultiplier": 12.1,
"FontSize": 13.1,
"BlockName": "sample string 14",
"Floor": "sample string 15"
}
]
application/xml, text/xml
Sample:
<ArrayOfTableInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers">
<TableInfo>
<BlockName>sample string 14</BlockName>
<Data>sample string 3</Data>
<Fill>sample string 4</Fill>
<Floor>sample string 15</Floor>
<FontSize>13.1</FontSize>
<Guid>sample string 10</Guid>
<Height>5.1</Height>
<ID>1</ID>
<Left>6.1</Left>
<Name>sample string 2</Name>
<PriceMultiplier>12.1</PriceMultiplier>
<Stroke>sample string 9</Stroke>
<StrokeMiterLimit>11</StrokeMiterLimit>
<Top>7.1</Top>
<Width>8.1</Width>
</TableInfo>
<TableInfo>
<BlockName>sample string 14</BlockName>
<Data>sample string 3</Data>
<Fill>sample string 4</Fill>
<Floor>sample string 15</Floor>
<FontSize>13.1</FontSize>
<Guid>sample string 10</Guid>
<Height>5.1</Height>
<ID>1</ID>
<Left>6.1</Left>
<Name>sample string 2</Name>
<PriceMultiplier>12.1</PriceMultiplier>
<Stroke>sample string 9</Stroke>
<StrokeMiterLimit>11</StrokeMiterLimit>
<Top>7.1</Top>
<Width>8.1</Width>
</TableInfo>
</ArrayOfTableInfo>