Skip to content

cityReadAll

Hyun-juhee edited this page Jan 2, 2020 · 1 revision

도시 정보 보기


[GET] ~/citys/city


Request-Header

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

Request-Body

이름 type 설명

Response - body

SUCCESS
{
    "status": 200,
    "message": "도시 전체 조회 성공",
    "data": [
        {
            "id": 1,
            "continent": "europe",
            "country": "france",
            "name": "paris",
            "popular": true,
            "recommend": true,
            "img": ""
        },
        {
            "id": 2,
            "continent": "north america",
            "country": "usa",
            "name": "newyork",
            "popular": true,
            "recommend": true,
            "img": ""
        },
        {
            "id": 3,
            "continent": "asia",
            "country": "japan",
            "name": "tokyo",
            "popular": true,
            "recommend": true,
            "img": ""
        },
        {
            "id": 4,
            "continent": "asia",
            "country": "taiwan",
            "name": "taipei",
            "popular": true,
            "recommend": true,
            "img": ""
        },
        {
            "id": 5,
            "continent": "asia",
            "country": "vietnam",
            "name": "danang",
            "popular": true,
            "recommend": true,
            "img": ""
        },
        {
            "id": 6,
            "continent": "asia",
            "country": "philippines",
            "name": "cebu",
            "popular": true,
            "recommend": true,
            "img": ""
        }
    ],
    "success": true
}
FAIL 1 : 데이터베이스에 도시 정보가 없을 때
{
    "status": 204,
    "message": "도시가 없습니다",
    "success": false
}
FAIL 2 : 서버 내부 오류
{
    "status": 500,
    "message": "도시 전체 조회 실패",
    "success": false
}
Clone this wiki locally