# Adds a review for a specific hotel. **POST /api/hotels/{hotelId}/reviews** This endpoint allows users to submit a review for a particular hotel identified by the provided hotelId. Sample request: POST /hotels/{hotelId}/reviews { "Title": "Amazing Experience", "Description": "The hotel provided exceptional service and comfortable accommodations.", "Rating": 5 } ## Servers - http://api.example.com: http://api.example.com () ## Parameters ### Path parameters - **hotelId** (string(uuid)) The ID of the hotel for which the review is added. ### Body: application/json (object) The model containing review details. - **title** (string | null) Title of the review - **description** (string | null) Content of the review (optional) - **rating** (integer(int32)) Rating for the hotel (1-5) - **Additional properties are NOT allowed** () ## Responses ### 200 Success ### 201 Review successfully added. ### 400 Invalid input or missing required fields. ### 401 User is not authenticated. ### 403 User is not authorized (not a guest, or didn't visit the hotel). ### 404 Hotel with the specified id not found. [Powered by Bump.sh](https://bump.sh)