POST api/Online/SendBookingDetails

Request Information

URI Parameters

None.

Body Parameters

BookingDataModel
NameDescriptionTypeAdditional information
MerchantId

integer

None.

BookingId

integer

None.

PhoneNumber

string

None.

CustomerEmail

string

None.

PeopleNumber

string

None.

ReservedDate

string

None.

TimeStart

string

None.

FromRemind

boolean

None.

CustomerName

string

None.

FromCancel

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "MerchantId": 1,
  "BookingId": 1,
  "PhoneNumber": "sample string 2",
  "CustomerEmail": "sample string 3",
  "PeopleNumber": "sample string 4",
  "ReservedDate": "sample string 5",
  "TimeStart": "sample string 6",
  "FromRemind": true,
  "CustomerName": "sample string 8",
  "FromCancel": true
}

application/xml, text/xml

Sample:
<BookingDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LP.WebAPI.Models">
  <BookingId>1</BookingId>
  <CustomerEmail>sample string 3</CustomerEmail>
  <CustomerName>sample string 8</CustomerName>
  <FromCancel>true</FromCancel>
  <FromRemind>true</FromRemind>
  <MerchantId>1</MerchantId>
  <PeopleNumber>sample string 4</PeopleNumber>
  <PhoneNumber>sample string 2</PhoneNumber>
  <ReservedDate>sample string 5</ReservedDate>
  <TimeStart>sample string 6</TimeStart>
</BookingDataModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.