PUT CheckoutReservation

Request Information

URI Parameters

None.

Body Parameters

ReservationFeedbackMasterDTO
NameDescriptionTypeAdditional information
ReservationId

integer

None.

SpentAmount

decimal number

None.

TipsAmount

decimal number

None.

Complimentary

boolean

None.

Behavior

string

None.

FeedBackNotes

string

None.

CareOfWho

string

None.

GeneralAppearance

string

None.

GroupAge

string

None.

Rate

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ReservationId": 1,
  "SpentAmount": 1.0,
  "TipsAmount": 1.0,
  "Complimentary": true,
  "Behavior": "sample string 2",
  "FeedBackNotes": "sample string 3",
  "CareOfWho": "sample string 4",
  "GeneralAppearance": "sample string 5",
  "GroupAge": "sample string 6",
  "Rate": 1
}

application/xml, text/xml

Sample:
<ReservationFeedbackMasterDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TLTApp.Entities.DTOs.Reserva">
  <Behavior>sample string 2</Behavior>
  <CareOfWho>sample string 4</CareOfWho>
  <Complimentary>true</Complimentary>
  <FeedBackNotes>sample string 3</FeedBackNotes>
  <GeneralAppearance>sample string 5</GeneralAppearance>
  <GroupAge>sample string 6</GroupAge>
  <Rate>1</Rate>
  <ReservationId>1</ReservationId>
  <SpentAmount>1</SpentAmount>
  <TipsAmount>1</TipsAmount>
</ReservationFeedbackMasterDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

MobileReturnOject
NameDescriptionTypeAdditional 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>