Skip to content

cityReadCountry

Hyun-juhee edited this page Jan 3, 2020 · 5 revisions

나라별 도시 정보 보기


[GET] ~/citys/country


Request-Header

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

Request-Body

이름 type 설명
country varchar 조회하고 싶은 나라 이름

Response - body

SUCCESS
{
    "status": 200,
    "message": "해당 국가 도시 조회 성공",
    "data": [
        {
            "id": 5,
            "continent": "asia",
            "country": "vietnam",
            "name": "danang",
            "popular": true,
            "recommend": true,
            "img": ""
        }
    ],
    "success": true
}
FAIL 1 : 데이터베이스에 도시 정보가 없을 때
{
    "status": 204,
    "message": "도시가 없습니다",
    "success": false
}
FAIL 2 : 파라미터 정보가 부족할 때
{
    "status": 400,
    "message": "필요한 값이 없습니다",
    "success": false
}
FAIL 3 : 서버 내부 오류
{
    "status": 500,
    "message": "해당 국가 도시 조회 실패",
    "success": false
}
Clone this wiki locally