POST api/user/bookings/claim/confirm

Confirms the booking claim OTP and links the booking to the signed-in account.

Request Information

URI Parameters

None.

Body Parameters

BookingClaimConfirmRequestDTO
NameDescriptionTypeAdditional information
Code

string

Required

Matching regular expression pattern: ^\d{4,10}$

DeviceIdentifier

string

Required

Max length: 128

Request Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "deviceIdentifier": "sample string 2"
}

application/xml, text/xml

Sample:
<BookingClaimConfirmRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CruiseParking.Website.API.Models">
  <Code>sample string 1</Code>
  <DeviceIdentifier>sample string 2</DeviceIdentifier>
</BookingClaimConfirmRequestDTO>

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 'BookingClaimConfirmRequestDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.