Skip to content

hotelCreate

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

숙박 추가하기


[POST] ~/citys/:CityId/Hotel


Request-Header

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

Request-Body

이름 type 설명
name string activity 이름
category string 호텔종류
subCategory string 성급정보
cost int 가격

Response - body

SUCCESS
{
    "status": 200,
    "data": {
        "id": 1,
        "name": "juhiHotel",
        "category": "hotel",
        "subCategory": "5",
        "cost": 66000,
        "CityId": "1"
    },
    "success": true
}
FAIL 1 : 필요한 값이 하나이상 없을때
{
    "status": 400,
    "message": "필요한 값이 없습니다",
    "success": false
}
FAIL 2 : 서버 내부 오류
{
    "json": {
        "status": 500,
        "success": false
    }
}
Clone this wiki locally