-
Notifications
You must be signed in to change notification settings - Fork 2
3.8. wifiSSID로 연결된 가게 조회(홈)
100yeeun edited this page Jan 3, 2020
·
3 revisions
수민, 예은
메소드 | 경로 | 설명 |
---|---|---|
GET | /storeInfo/wifi/:wifiSSID | wifiSSID로 연결된 가게 조회(홈) |
Content-Type: application/json
token: "사용자 token 값"
가게 정보 조회 성공
{
"status": 200,
"success": true,
"message": "가게 정보 조회 성공",
"data": {
"storeIdx": 14,
"thumbnail": "456",
"storeName": "test",
"wifiSSID": "234",
"remainingDays": 2,
"progressPercent": 10
}
}
INTERNAL SERVER ERROR
{
"status": 500,
"success": false,
"message": "서버 내부 오류"
}
DB ERROR
{
"status": 600,
"success": false,
"message": "데이터베이스 에러"
}