Skip to content

shoppingImg

Hyun-juhee edited this page Jan 2, 2020 · 2 revisions

쇼핑 이미지 정보 가져오기


[GET] ~/citys/:CityId/Shoppingimg


Request-Header

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

Response - body

SUCCESS
{
    "status": 200,
    "data": [
        {
            "img": "https://sopt-toney.s3.ap-northeast-2.amazonaws.com/shopping/img_shopping_paris.png"
        }
    ],
    "success": true
}

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

{
    "status": 204,
    "message": "존재하는 SHOPPING가 없습니다",
    "success": false
}

FAIL 2: 서버 내부 오류

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