action hetras_certification_bookings_check_out { label: "Performs a check out operation for a reservation." description: "With this call you can set a reservation to the checkout status. It allows only single room reservations to be checked out. \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_out" 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 } }