# Retrieves the reviews for a specific hotel based on the specified query parameters. **GET /api/hotels/{hotelId}/reviews** The retrieval of hotel reviews can be customized by providing various query parameters. These parameters include sorting options, page number, page size, and a search term. Sample request: GET /hotels/{hotelId}/reviews?sortOrder=desc&sortColumn=creationDate&pageNumber=1&pageSize=5&searchQuery=Excellent ## Servers - http://api.example.com: http://api.example.com () ## Parameters ### Path parameters - **hotelId** (string(uuid)) The unique identifier of the hotel. ### Query parameters - **PageNumber** (integer(int32)) - **PageSize** (integer(int32)) - **SearchTerm** (string) search by: - **SortColumn** (string) sort by: - **SortOrder** (string) asc or desc ## Responses ### 200 Returns the list of hotel reviews based on the query parameters. #### Body: application/json (object) - **id** (string(uuid)) - **title** (string | null) - **description** (string | null) - **rating** (integer(int32)) - **creationDate** (string(date-time)) - **lastModified** (string(date-time)) - **guest** (object) - **hotelId** (string(uuid)) - **hotelName** (string | null) - **Additional properties are NOT allowed** () ### 400 If the request data is invalid ### 404 If the hotel is not found. [Powered by Bump.sh](https://bump.sh)