POST api/store-portal/advanced/reservations

Request Information

URI Parameters

None.

Body Parameters

CreateReservationRequest
NameDescriptionTypeAdditional information
CustomerName

string

None.

Phone

string

None.

PartySize

integer

None.

ReservedAtUtc

date

None.

Notes

string

None.

Request Formats

application/json, text/json

Sample:
{
  "customerName": "sample string 1",
  "phone": "sample string 2",
  "partySize": 3,
  "reservedAtUtc": "2026-05-17T05:06:30.6450762Z",
  "notes": "sample string 5"
}

application/xml, text/xml

Sample:
<CreateReservationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Del.Api.Models.StorePortal">
  <CustomerName>sample string 1</CustomerName>
  <Notes>sample string 5</Notes>
  <PartySize>3</PartySize>
  <Phone>sample string 2</Phone>
  <ReservedAtUtc>2026-05-17T00:06:30.6450762-05:00</ReservedAtUtc>
</CreateReservationRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CreateReservationRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.