-
Notifications
You must be signed in to change notification settings - Fork 3
메뉴 상세 정보 조회
Bomi Kim edited this page Jan 8, 2019
·
5 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /stores/{storeIdx}/menu/{menuIdx} | 메뉴 상세 정보 조회 |
Content-Type: application/json
storeIdx: 조회할 매장 고유 idx(int)
menuIdx: 조회할 메뉴 고유 idx(int)
{
"status": 200,
"message": "메뉴 상세 정보 조회 성공",
"data": [
{
"size": 1,
"price": 1000
}
]
}
{
"status": 404,
"message": "메뉴 상세 정보를 찾을 수 없습니다.",
"data": null
}
** 메뉴와 매장은 존재하지만, 해당 menu가 해당 store에 없는 경우에도 이렇게 뜸
{
"status": 404,
"message": "사이즈와 가격 정보가 없습니다.",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}