Skip to content

3.8. wifiSSID로 연결된 가게 조회(홈)

100yeeun edited this page Jan 3, 2020 · 3 revisions

wifiSSID로 연결된 가게 조회(홈)

수민, 예은

메소드 경로 설명
GET /storeInfo/wifi/:wifiSSID wifiSSID로 연결된 가게 조회(홈)

Request Header

Content-Type: application/json
token: "사용자 token 값"

Response Body

Success Response

가게 정보 조회 성공

{
    "status": 200,
    "success": true,
    "message": "가게 정보 조회 성공",
    "data": {
        "storeIdx": 14,
        "thumbnail": "456",
        "storeName": "test",
        "wifiSSID": "234",
        "remainingDays": 2,
        "progressPercent": 10
    }
}

Fail Response

INTERNAL SERVER ERROR

{
    "status": 500,
    "success": false,
    "message": "서버 내부 오류"
}

DB ERROR

{
    "status": 600,
    "success": false,
    "message": "데이터베이스 에러"
}
Clone this wiki locally