[GET] 북마크 조회 - Be-Daangn/server GitHub Wiki
[GET] 북마크 조회
METHOD |
PATH |
GET |
/recommend/bookmark |
📌Request-Header
`Content-Type` : `application/json`
📌RESPONSE BODY
key |
설명 |
타입 |
비고 |
_id |
게시글 별 아이디 값 |
String |
|
title_idx |
게시글 인덱스 번호 |
Number |
|
title |
게시글 제목 |
String |
|
image |
사진 저장 주소 |
String |
|
review |
후기 개수 |
Number |
|
customer |
단골 개수 |
Number |
|
place |
장소 |
String |
|
bookmark |
북마크 설정 여부 |
Boolean |
|
성공 - bookmark 가 true인 게시글만 조회 가능
{
"status": 200,
"success": true,
"message": "북마크 가져오기성공",
"data": [
{
"_id": "60a897a6705f0140353f7259",
"title_idx": 1,
"title": "다운타우너",
"image": "https://carrotmarket.s3.ap-northeast-2.amazonaws.com/down.png",
"review": 89,
"customer": 31,
"place": "한남동",
"bookmark": true,
"__v": 0
},
{
"_id": "60a897e6705f0140353f725a",
"title_idx": 2,
"title": "오복 수산",
"image": "https://carrotmarket.s3.ap-northeast-2.amazonaws.com/fish.png",
"review": 75,
"customer": 24,
"place": "한남동",
"bookmark": true,
"__v": 0
},
{
"_id": "60abebb3149e2523e9fc8eaa",
"title_idx": 3,
"title": "파이프그라운드",
"image": "https://carrotmarket.s3.ap-northeast-2.amazonaws.com/pizza.png",
"review": 66,
"customer": 18,
"place": "한남동",
"bookmark": true,
"__v": 0
}
]
}
실패-서버 내부에러
{
"status": 500,
"success": false,
"message": "북마크 가져오기 실패"
}