Skip to content

3.2. 와이파이 확인

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

와이파이 확인

수민

메소드 경로 설명
POST /storeInfo/wifi 와이파이 확인

Request Header

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

Request Body

{
	"storeIdx" : 1,
	"wifiSSID" : "123"
}

Response Body

Success Response

와이파이 SSID 일치할 때

{
    "status": 200,
    "success": true,
    "message": "와이파이 SSID 일치"
}

Fail Response

와이파이 SSID가 일치하지 않을 때

{
    "status": 401,
    "success": false,
    "message": "와이파이 SSID 일치하지 않음"
}

존재하지 않는 가게일 때

{
    "status": 400,
    "success": false,
    "message": "존재하지 않는 인덱스 값"
}

INTERNAL SERVER ERROR

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