action hetras_certification_bookings_check_in {
label: "Performs a check in operation for a reservation."
description: "With this call you can set a reservation to the status inhouse. It allows only single room reservations to be checked in.
\n The reservation must have assigned a vacant and clean room.
\n For more details on how the API responds to errors please check our documentation on
\n Error Handling."
provider: hetras_certification
method: POST
path: "/api/booking/v0/bookings/{confirmationId}/reservations/{reservationNumber}/check_in"
encoding: json
input: {
type: "object"
properties: {
"App-Id": {
type: "string"
}
"App-Key": {
type: "string"
}
confirmationId: {
type: "string"
}
reservationNumber: {
type: "string"
}
}
required: ["App-Id", "App-Key", "confirmationId", "reservationNumber"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}