-
Notifications
You must be signed in to change notification settings - Fork 1
API 문서
jihyunPark edited this page Feb 24, 2022
·
13 revisions
- /api/matzip/{pageNumber} - GET(size=12), 평점순으로 sorting ✅
{
matzips: [
{id: 1, title: "루피네 한식당",
content: "루피가 요리해줘요!",
thumbnail: "naver/어쩌구저쩌구",
rating: 3.5, price: 10000},....
]
}
- /api/matzip/category/{categoryId}/{pageNumber} - GET(size=12), 평점순으로 sorting ✅
{
matzips: [
{id: 1, title: "루피네 한식당",
content: "루피가 요리해줘요!",
thumbnail: "naver/어쩌구저쩌구",
rating: 3.5, price: 10000},....
]
}
- /api/matzip - POST ✅
{
// request
title: "루피네 한식당",
content: "가지덮밥, 멘보샤",
view: 123,
thumbnail: "https://dkjfkdls",
naverUrl: "https://djdsl",
naverRating: "4.39",
naverComment: "139",
address: "서울시 어쩌구"
price: "20000",
category: "한식"
}
- /api/matzip/{matzipId} - GET ✅
{
id: 1,
title: "루피네 한식당",
content: "루피가 요리해줘요!",
view: 123,
thumbnail: "https://dkjfkdls",
naverUrl: "https://dkjfkjl",
naverRating: "4.39",
naverComment: 139,
address: "서울시 어쩌구"
price: "20000",
category: "한식",
rating: 3.5,
comments : {id: 1, content: "존맛!!", rating: "3.5"}, ......
}
- /api/matzip/{matzipId} - PUT(PATCH) ✅
{
title: "루피네 외식당",
content: "루피가 요리 못해줘요"
}
-
/api/matzip/{matzipId} - DELETE ✅
-
/api/matzip/{matzipId}/reviews - POST ✅
{
content: "존맛!!",
rating: "3.5"
}
- /api/matzip/{matzipId}/reviews/{matzipReviewId} - PUT(PATCH)
{
content: "노맛!!",
rating: "1.5"
}
-
/api/matzip/{matzipId}/reviews/{matzipReviewId} - DELETE ✅
-
/api/category - GET ✅
{
[
"한식",
"중식",
...
]
}