-
Notifications
You must be signed in to change notification settings - Fork 2
3.4. 가게 정보 등록
100yeeun edited this page Jan 3, 2020
·
3 revisions
수민, 예은
메소드 | 경로 | 설명 |
---|---|---|
POST | /storeInfo | 가게 정보 등록 |
Content-Type: multipart/form-data
token: "사용자 token 값"
{
"name": "456",
"telNumber": "456",
"latitude": "456",
"longitude": "456",
"address": "456",
"businessHours": "456",
"breaktime": "456",
"holiday": "456",
"thumbnail": "https://img-cf.kurly.com/shop/data/goodsview/20180913/gv20000032021_1.jpg",
"wifiSSID": "456",
"menu": [
{
"menuName": "국빱",
"menuPrice": "7000"
},
{
"menuName": "국빠빠ㅃ",
"menuPrice": "5000"
},
{
"menuName": "국밥쓰",
"menuPrice": "2000"
}
]
}
가게 정보 작성 성공
{
"status": 200,
"success": true,
"message": "가게 정보 작성 성공",
"data": 23
}
Body에 값이 없을 때
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
INTERNAL SERVER ERROR
{
"status": 500,
"success": false,
"message": "서버 내부 오류"
}