매장 상세 조회 - YeongSeoYeonGeun/UOrders_Server GitHub Wiki
매장 상세 조회
메소드 |
경로 |
설명 |
GET |
/cafe/{cafeIndex} |
매장 상세 조회 |
요청 헤더
{
"Content-Type": "application/json",
"userIndex": 1"
}
응답 성공
{
"status": 200,
"message": "매장 상세 조회 성공",
"data": {
"cafeName": "남산학사 cafe",
"cafeLocation": "신공학관 1층",
"isFavorite": "TRUE",
"wonText": "원 또는 won 또는 ..",
"menuInfo": [
{
"menuIndex": 1,
"menuName": "아메리카노",
"menuPrice": "1500",
"menuImage": "남산학사_아메리카노 이미지 링크"
},
{
"menuIndex": 2,
"menuName": "카페라떼",
"menuPrice": "1500",
"menuImage": "남산학사_카페라떼 이미지 링크"
},
{
"menuIndex": 3,
"menuName": "딸기케이크",
"menuPrice": "12000",
"menuImage": "남산학사_딸기케이크 이미지 링크"
},
]
}
}
응답 실패
{
"status": 400,
"message": "{userIndex}에 해당하는 값이 유효하지 않습니다. {userIndex} 값을 확인해주세요."
}
{
"status": 400,
"message": "{cafeIndex}에 해당하는 값이 유효하지 않습니다. {cafeIndex} 값을 확인해주세요."
}
{
"status": 500,
"message": "INTERNAL_SERVER_ERROR"
}