PUT UpdateVenueTable
Request Information
URI Parameters
None.
Body Parameters
VenueTableDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| VenueTableId | integer |
None. |
|
| VenueTableNo | string |
None. |
|
| VenueId | integer |
None. |
|
| Price | decimal number |
None. |
|
| MaxNoOfPAX | integer |
None. |
|
| MinNoOfPAX | integer |
None. |
|
| TableType | string |
None. |
|
| IsInDoor | boolean |
None. |
|
| IsActive | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"VenueTableId": 1,
"VenueTableNo": "sample string 2",
"VenueId": 3,
"Price": 1.1,
"MaxNoOfPAX": 1,
"MinNoOfPAX": 1,
"TableType": "sample string 4",
"IsInDoor": true,
"IsActive": true
}
application/xml, text/xml
Sample:
<VenueTableDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TLTApp.Entities.DTOs.Reserva"> <IsActive>true</IsActive> <IsInDoor>true</IsInDoor> <MaxNoOfPAX>1</MaxNoOfPAX> <MinNoOfPAX>1</MinNoOfPAX> <Price>1.1</Price> <TableType>sample string 4</TableType> <VenueId>3</VenueId> <VenueTableId>1</VenueTableId> <VenueTableNo>sample string 2</VenueTableNo> </VenueTableDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MobileReturnOject| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Status | boolean |
None. |
|
| Obj | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Status": true,
"Obj": {}
}
application/xml, text/xml
Sample:
<MobileReturnOject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TLTApp.Services"> <Message>sample string 1</Message> <Obj /> <Status>true</Status> </MobileReturnOject>