[상세보기 뷰] 가게 상세보기 메뉴 조회 API - sopt28-ClDiSer-team11/Server GitHub Wiki

📍URL : http://3.35.48.11:5000/api/detail/:storeIdx/menu

:storeIdx   
1  = 라라레스토랑  
2 = 여우골초밥  

ex) 여우골초밥 데이터를 가져오고 싶은 경우 ~/detail/2/menu 로 요청하면 됩니다!

Request

메소드 경로 설명
GET /detail/:storeIdx/menu 메뉴 조회

Response Body

// Body
{
	"storeIdx": String,
	"title": String,
	"price": String,
	"image": String,
	"detailMenu": String
}

Response

성공

{
    "status": 200,
    "success": true,
    "message": "배너 조회 성공.",
    "data": [
							{ 
								"storeIdx": "1",
								“title”: “모듬초밥 12P”,        
								“price”: “12,000원",         
								“image” : “123.jpg”,
								“detailMenu”: “연어2, 활어2”
     
							},
					    {        
								"storeIdx": "1",
								“title”: “모듬초밥 12P”,        
								“price”: “12,000원",
								“image” : “123.jpg”,        
								“detailMenu”: “연어2, 활어2” 
							}	
						]
}
  • storeIdx에 해당하는 데이터가 없는 경우
{
    "status": 200,
    "success": true,
    "message": "메뉴 데이터 없음",
    "data": []
}

실패

  • 서버 내부 에러
{
    "status": 500,
    "success": false,
    "message": "서버 내부 에러."
}