Skip to content

cityCreate

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

도시 추가하기


[POST] ~/citys


Request-Header

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

Request-Body

이름 type 설명
continent string 대륙명
country string 나라명
name string 도시명
popular boal 인기 여행지 해당여부
recommend boal 추천 여행지 해당여부
img url 도시 사진

Response - body

SUCCESS
{
    "status": 200,
    "data": {
        "id": 7,
        "continent": "Asia",
        "country": "Korea",
        "name": "서울",
        "popular": "1",
        "recommend": "1",
        "img": "https://sopt-toney.s3.ap-northeast-2.amazonaws.com/1577455662392.png"
    },
    "success": true
}
FAIL 1 : 필요한 값을 다 넣지 않았을때
{
    "status": 400,
    "message": "필요한 값이 없습니다",
    "success": false
}
FAIL 2 : 서버 내부 오류
{
    "status": 500,
    "message": "CITY 제작 실패",
    "success": false
}
Clone this wiki locally