PUT api/v{version}/checkin/checks/{bookingRef}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
bookingRef

string

Required

version

The requested API version

string

Required

Default value is 1.0

Body Parameters

CheckinSlotInfo
NameDescriptionTypeAdditional information
CheckedId

string

None.

ConfirmedWithCustomer

boolean

None.

ConfirmedDetails

string

None.

SlotBooked

string

None.

SummaryViewed

string

None.

ReadyForCheckInViewed

string

None.

CheckInDate

date

None.

CheckInTime

string

None.

BookingRef

string

None.

CustomerId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CheckedId": "sample string 1",
  "ConfirmedWithCustomer": true,
  "ConfirmedDetails": "sample string 2",
  "SlotBooked": "sample string 3",
  "SummaryViewed": "sample string 4",
  "ReadyForCheckInViewed": "sample string 5",
  "CheckInDate": "2024-09-19T12:25:12.0258769+01:00",
  "CheckInTime": "sample string 6",
  "BookingRef": "sample string 7",
  "CustomerId": "sample string 8"
}

text/javascript

Sample:
{"CheckedId":"sample string 1","ConfirmedWithCustomer":true,"ConfirmedDetails":"sample string 2","SlotBooked":"sample string 3","SummaryViewed":"sample string 4","ReadyForCheckInViewed":"sample string 5","CheckInDate":"2024-09-19T12:25:12.0258769+01:00","CheckInTime":"sample string 6","BookingRef":"sample string 7","CustomerId":"sample string 8"}

application/xml, text/xml

Sample:
<CheckinSlotInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNITE.External.API.Support.Checkin.v1">
  <BookingRef>sample string 7</BookingRef>
  <CustomerId>sample string 8</CustomerId>
  <CheckInDate>2024-09-19T12:25:12.0258769+01:00</CheckInDate>
  <CheckInTime>sample string 6</CheckInTime>
  <CheckedId>sample string 1</CheckedId>
  <ConfirmedDetails>sample string 2</ConfirmedDetails>
  <ConfirmedWithCustomer>true</ConfirmedWithCustomer>
  <ReadyForCheckInViewed>sample string 5</ReadyForCheckInViewed>
  <SlotBooked>sample string 3</SlotBooked>
  <SummaryViewed>sample string 4</SummaryViewed>
</CheckinSlotInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseObjectOfCheckinSlotInfo
NameDescriptionTypeAdditional information
statusCode

integer

None.

errorMessage

string

None.

success

boolean

None.

result

CheckinSlotInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "statusCode": 1,
  "errorMessage": "sample string 2",
  "success": true,
  "result": {
    "CheckedId": "sample string 1",
    "ConfirmedWithCustomer": true,
    "ConfirmedDetails": "sample string 2",
    "SlotBooked": "sample string 3",
    "SummaryViewed": "sample string 4",
    "ReadyForCheckInViewed": "sample string 5",
    "CheckInDate": "2024-09-19T12:25:12.0258769+01:00",
    "CheckInTime": "sample string 6",
    "BookingRef": "sample string 7",
    "CustomerId": "sample string 8"
  }
}

text/javascript

Sample:
{"statusCode":1,"errorMessage":"sample string 2","success":true,"result":{"CheckedId":"sample string 1","ConfirmedWithCustomer":true,"ConfirmedDetails":"sample string 2","SlotBooked":"sample string 3","SummaryViewed":"sample string 4","ReadyForCheckInViewed":"sample string 5","CheckInDate":"2024-09-19T12:25:12.0258769+01:00","CheckInTime":"sample string 6","BookingRef":"sample string 7","CustomerId":"sample string 8"}}

application/xml, text/xml

Sample:
<ResponseObjectOfCheckinSlotInfooinrbbdF xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNITE.External.API.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/UNITE.External.API.Support.Checkin.v1">
    <d2p1:BookingRef>sample string 7</d2p1:BookingRef>
    <d2p1:CustomerId>sample string 8</d2p1:CustomerId>
    <d2p1:CheckInDate>2024-09-19T12:25:12.0258769+01:00</d2p1:CheckInDate>
    <d2p1:CheckInTime>sample string 6</d2p1:CheckInTime>
    <d2p1:CheckedId>sample string 1</d2p1:CheckedId>
    <d2p1:ConfirmedDetails>sample string 2</d2p1:ConfirmedDetails>
    <d2p1:ConfirmedWithCustomer>true</d2p1:ConfirmedWithCustomer>
    <d2p1:ReadyForCheckInViewed>sample string 5</d2p1:ReadyForCheckInViewed>
    <d2p1:SlotBooked>sample string 3</d2p1:SlotBooked>
    <d2p1:SummaryViewed>sample string 4</d2p1:SummaryViewed>
  </Result>
  <StatusCode>1</StatusCode>
  <Success>true</Success>
</ResponseObjectOfCheckinSlotInfooinrbbdF>