Check In Service API (1.0.0)
Pass Check In and Check Out Information to CLC
Download OpenAPI description
Languages
Servers
Mock server
https://docs.roomex.com/_mock/api/openapi/
Mock Server
https://c3a1ba49-c2e4-4e2f-829e-1195823e9d09.mock.pstmn.io/
Bodyapplication/jsonrequired
Check In
- Mock server
https://docs.roomex.com/_mock/api/openapi/api/v1/reservation/checkin
- Mock Server
https://c3a1ba49-c2e4-4e2f-829e-1195823e9d09.mock.pstmn.io/api/v1/reservation/checkin
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.roomex.com/_mock/api/openapi/api/v1/reservation/checkin \
-H 'Content-Type: application/json' \
-H 'X-Api-Key: YOUR_API_KEY_HERE' \
-d '{
"employeeIdentifier": "1234345",
"supplierReservationId": "1234",
"source": "HOS",
"checkInDateTime": "2024-10-17T14:30:00-05:00",
"roomNumber": "204",
"folioNumber": "204",
"guestFirstName": "Ada",
"guestLastName": "Lovelace",
"loyalty": "hhonors",
"numberOfNights": 2
}'Response
application/json
{ "status": "checked_in" }
Bodyapplication/jsonrequired
Check Out Request
- Mock server
https://docs.roomex.com/_mock/api/openapi/api/v1/reservation/checkout
- Mock Server
https://c3a1ba49-c2e4-4e2f-829e-1195823e9d09.mock.pstmn.io/api/v1/reservation/checkout
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.roomex.com/_mock/api/openapi/api/v1/reservation/checkout \
-H 'Content-Type: application/json' \
-H 'X-Api-Key: YOUR_API_KEY_HERE' \
-d '{
"employeeIdentifier": "1234345",
"supplierReservationId": "1234",
"checkOutDateTime": "2025-10-17T14:30:00-05:00",
"roomNumber": "204",
"folioNumber": "204",
"guestFullName": "Ada Lovelace",
"checkInDateTime": "2024-10-17T14:30:00-05:00"
}'Response
application/json
{ "status": "checked_out" }
- Mock server
https://docs.roomex.com/_mock/api/openapi/api/v1/reservation/status/{requestId}
- Mock Server
https://c3a1ba49-c2e4-4e2f-829e-1195823e9d09.mock.pstmn.io/api/v1/reservation/status/{requestId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.roomex.com/_mock/api/openapi/api/v1/reservation/status/bb8350fc-dce1-41a1-91b1-91b0d64b5eeb \
-H 'X-Api-Key: YOUR_API_KEY_HERE'Response
application/json
{ "employeeIdentifier": "123456789" }