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": "bx3i0lhj4kK2STdO+uK2ew==", "storeID": 1, "guid": "d2e21d6f-6358-42e2-b649-374efae2b67b", "tableNumber": 2, "tableType": 3, "name": "sample string 4", "maxCover": 1, "isCommunal": true, "canMerge": true, "isSmoking": true, "isOutdoor": true, "deleted": true, "updated": "2025-08-02T23:22:04.7648421", "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>bx3i0lhj4kK2STdO+uK2ew==</G_Uid> <Guid>d2e21d6f-6358-42e2-b649-374efae2b67b</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-08-02T23:22:04.7648421+00:00</Updated> </RestaurantTable>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.