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
RestaurantTableName | 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": "WLDEi6SP+ECzH+wY4WaBjA==", "storeID": 1, "guid": "8bc4b058-8fa4-40f8-b31f-ec18e166818c", "tableNumber": 2, "tableType": 3, "name": "sample string 4", "maxCover": 1, "isCommunal": true, "canMerge": true, "isSmoking": true, "isOutdoor": true, "deleted": true, "updated": "2025-06-14T07:24:45.6523343", "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>WLDEi6SP+ECzH+wY4WaBjA==</G_Uid> <Guid>8bc4b058-8fa4-40f8-b31f-ec18e166818c</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>2025-06-14T07:24:45.6523343+00:00</Updated> </RestaurantTable>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.