매장 조회 - YeongSeoYeonGeun/UOrders_Server GitHub Wiki
매장 관리 조회
메소드 |
경로 |
설명 |
GET |
/owner/cafe/{cafeIndex} |
매장 조회 |
요청 헤더
{
"Content-Type": "application/json",
"ownerIndex": 1
}
응답 성공
{
"status": 200,
"message": "메뉴 조회 성공",
"data": {
"cafeName": "남산학사 cafe",
"cafeLocation": "남산학사 1층",
"menuInfo": [
{
"menuIndex": 1,
"menuName": "아메리카노",
"menuPrice": 3000,
"menuImage": "아메리카노.jpg"
},
{
"menuIndex": 1,
"menuName": "카페라떼",
"menuPrice": 3000,
"menuImage": "카페라떼.jpg"
},
],
}
}
응답 실패
{
"status": 400,
"message": "userIndex에 해당하는 값이 유효하지 않습니다. userIndex 값을 확인해주세요."
}
{
"status": 500,
"message": "INTERNAL_SERVER_ERROR"
}