-
Notifications
You must be signed in to change notification settings - Fork 1
[GET] 새소식 리스트 조회
Chae Jeong Ah edited this page May 26, 2021
·
2 revisions
METHOD | PATH |
---|---|
GET | /news |
`Content-Type` : `application/json`
key | 설명 | 타입 | 비고 |
---|---|---|---|
_id |
게시글 별 아이디 값 | String |
|
title_idx |
게시글 인덱스 번호 | Number |
|
title |
게시글 제목 (가게 이름) | String |
|
image |
사진 저장 주소 | String |
|
event |
행사 제목 | String |
|
place |
장소 | String |
|
info |
글 내용 | String |
{
"status": 200,
"success": true,
"message": "소식 리스트 가져오기 성공",
"data": [
{
"_id": "60abef6bd9f95026d6b35b23",
"title_idx": 1,
"title": "아인플라워",
"image": "https://carrotmarket.s3.ap-northeast-2.amazonaws.com/flower.png",
"event": "아인플라워 오픈 행사",
"place": "한남동",
"info": "<<5월 1일 GRAND OPEN>>\\n\\n안녕하세요. 당근님들.\\n아인플라워 오픈합니다.\\n놀러오세요~!",
"__v": 0
},
{
"_id": "60ad0a663ea3ba428246cabf",
"title_idx": 2,
"title": "제일인테리어",
"image": "https://carrotmarket.s3.ap-northeast-2.amazonaws.com/diner.png",
"event": "인테리어 상담 서비스",
"place": "한남동",
"info": "<<5월 2일 GRAND OPEN>>\\n\\n오픈 기념 인테리어 상담 서비스를 진행합니다\\n\\n제일 가는 제일인테리어로\\n상담받으러 오세요.",
"__v": 0
},
{
"_id": "60ad0a6d3ea3ba428246cac0",
"title_idx": 3,
"title": "아워즈카페",
"image": "https://carrotmarket.s3.ap-northeast-2.amazonaws.com/cake.png",
"event": "시즌 디저트 개시",
"place": "한남동",
"info": "<<5월 3일 GRAND OPEN>>\\n\\n24hours 영업하는 아워즈카페입니다.\\n여름맞이 시원한 팬케이크 드시고 가세요!\\n기다리고 있겠습니다~!\\nwaiting for you!",
"__v": 0
}
]
}
{
"status": 500,
"success": false,
"message": "소식 리스트 가져오기 실패"
}