# Check Out Pass all relevant check out infomation to check out a guest Endpoint: POST /api/v1/reservation/checkout Version: 1.0.0 Security: ApiKey ## Request fields (application/json): - `employeeIdentifier` (string) - `supplierReservationId` (string, required) - `checkInDateTime` (string, required) Date and time with timezone offset, e.g., 2024-10-17T14:30:00-05:00 Example: "2024-10-17T14:30:00-05:00" - `roomNumber` (string, required) - `folioNumber` (string, required) - `guestFirst` (string) - `guestLastName` (string, required) - `totalNumberOfNights` (integer) - `occupancy` (integer, required) ## Response 200 fields (application/json): - `status` (string) ## Response 202 fields (application/json): - `status` (string) ## Response 400 fields (application/json): - `message` (string, required) ## Response 404 fields (application/json): - `message` (string, required) Example: "Item with the provided Reservation Id was not found" ## Response 500 fields (application/json): - `message` (string, required) Internal Server Error