Store Detail

GET https://foodfly.shop/category/category_pk/store/store_pk/

category_pk와 store_pk를 URL에 담아서 요청

{
    "pk": pk,
    "store_category": store_category,
    "name": name,
    "img_profile": img_profile,
    "store_info": store_info,
    "origin_info": origin_info,
    "created_at": created_at,
    "owner": owner,
    "least_cost": least_cost,
    "takeout": takeout,
    "fee": fee,
    "food_set": [
            {
                "pk": pk,
                "name": name,
                "img_profile": img_profile,
                "price": price,
                "stock": stock,
                "store": store,
                "set_menu": set_menu,
                "food_info": food_info
            }
    ]
}

Last updated