PUT api/restaurantTable/{id}
Updates restaurant Table using GUID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
RestaurantTable| Name | Description | Type | Additional information |
|---|---|---|---|
| G_Uid |
GUID data |
Collection of byte |
None. |
| StoreID |
Store Id |
integer |
None. |
| Guid | globally unique identifier |
None. |
|
| TableNumber |
Table Number |
integer |
None. |
| TableType |
Table Type DineIn PickupOrTakeAway or DriveThrough |
TableType |
None. |
| Name |
Table Name |
string |
String length: inclusive between 0 and 60 |
| MaxCover |
Maximum Cover |
integer |
None. |
| IsCommunal |
Is communal ? |
boolean |
None. |
| CanMerge |
Can merge ? |
boolean |
None. |
| IsSmoking |
Is Smoking? |
boolean |
None. |
| IsOutdoor |
Is Outdoor? |
boolean |
None. |
| Deleted |
Is Deleted? |
boolean |
None. |
| Updated |
Updated DateTime |
date |
None. |
| StoreName |
Store name |
string |
Relation. This field may not always be loaded or used for updates. |
Request Formats
application/json, text/json
Sample:
{
"g_Uid": "NKf4zCwSmk+OrvzNGuXeew==",
"storeID": 1,
"guid": "ccf8a734-122c-4f9a-8eae-fccd1ae5de7b",
"tableNumber": 2,
"tableType": 3,
"name": "sample string 4",
"maxCover": 1,
"isCommunal": true,
"canMerge": true,
"isSmoking": true,
"isOutdoor": true,
"deleted": true,
"updated": "2026-04-03T06:15:10.0064154",
"storeName": "sample string 11"
}
application/xml, text/xml
Sample:
<RestaurantTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://gapsolutions.com.au/schema/ezimanager"> <CanMerge>true</CanMerge> <Deleted>true</Deleted> <G_Uid>NKf4zCwSmk+OrvzNGuXeew==</G_Uid> <Guid>ccf8a734-122c-4f9a-8eae-fccd1ae5de7b</Guid> <IsCommunal>true</IsCommunal> <IsOutdoor>true</IsOutdoor> <IsSmoking>true</IsSmoking> <MaxCover>1</MaxCover> <Name>sample string 4</Name> <StoreID>1</StoreID> <StoreName>sample string 11</StoreName> <TableNumber>2</TableNumber> <TableType>3</TableType> <Updated>2026-04-03T06:15:10.0064154+00:00</Updated> </RestaurantTable>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.