Skip to content

hotelRead

Hyun-juhee edited this page Dec 30, 2019 · 4 revisions

도시별 숙박 정보 보기


[GET] ~/citys/:CityId/Hotel


Request-Header

메소드 파라미터 설명
Content-Type application/json

Response - body

SUCCESS
{
    "status": 200,
    "message": "CityId 해당하는 HOTEL 조회 성공",
    "data": [
        {
            "id": 1,
            "name": "juhiHotel",
            "category": "hotel",
            "subCategory": "5",
            "cost": 66000,
            "CityId": 1
        }
    ],
    "success": true
}

FAIL 1: 해당 cityId에 등록된 hotel이 없을때

{
    "status": 204,
    "message": "HOTEL가 없습니다",
    "success": false
}

FAIL 2: 서버 내부 오류

{
    "status": 500,
    "message": "CityId 해당하는 HOTEL 조회 실패",
    "success": false
}
Clone this wiki locally