POST api/TableReservations/AddTableReservation

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
dto
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "ID": 1,
  "MemberID": 2,
  "POSID": 3,
  "LocationID": 4,
  "TableID": 5,
  "ReservationSlotID": 6,
  "ReservationDate": "2026-07-31T00:17:57.741685+05:30",
  "BookedStartTime": "2026-07-31T00:17:57.741685+05:30",
  "BookedEndTime": "2026-07-31T00:17:57.741685+05:30",
  "PaxCount": 10,
  "BookingNotes": "sample string 11",
  "KitchenNotes": "sample string 12",
  "Remarks": "sample string 13",
  "MemberNotePreference": "sample string 14",
  "UserID": 15,
  "Status": "sample string 16"
}

application/xml, text/xml

Sample:
<TableReservationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMSWebAPINew.Controllers">
  <BookedEndTime>2026-07-31T00:17:57.741685+05:30</BookedEndTime>
  <BookedStartTime>2026-07-31T00:17:57.741685+05:30</BookedStartTime>
  <BookingNotes>sample string 11</BookingNotes>
  <ID>1</ID>
  <KitchenNotes>sample string 12</KitchenNotes>
  <LocationID>4</LocationID>
  <MemberID>2</MemberID>
  <MemberNotePreference>sample string 14</MemberNotePreference>
  <POSID>3</POSID>
  <PaxCount>10</PaxCount>
  <Remarks>sample string 13</Remarks>
  <ReservationDate>2026-07-31T00:17:57.741685+05:30</ReservationDate>
  <ReservationSlotID>6</ReservationSlotID>
  <Status>sample string 16</Status>
  <TableID>5</TableID>
  <UserID>15</UserID>
</TableReservationDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>