Request

Query Params

pk: int #부스 ID
menu_pk: int #메뉴 ID

Response

200

{
    "message": "메뉴 목록 조회 성공",
    "data": [
        {
            "id": 1,
            "booth": 1,
            "menu": "콩국수",
            "price": 3000,
            "is_soldout": false,
            "like": [],
            "img": "<https://festivalewha.s3.ap-northeast-2.amazonaws.com/1_images/images.jpg>",
            "vegan": "비건"
        },
        {
            "id": 2,
            "booth": 1,
            "menu": "콩자반",
            "price": 1000,
            "is_soldout": false,
            "like": [],
            "img": "<https://festivalewha.s3.ap-northeast-2.amazonaws.com/1_images/images.jpg>",
            "vegan": "비건"
        }
    ]
}