-
Notifications
You must be signed in to change notification settings - Fork 2
[DELETE] 글 삭제
정석현 edited this page Aug 30, 2021
·
10 revisions
메소드 | 경로 | 설명 |
---|---|---|
DELETE | /writings | 글 삭제 |
{
"x-auth-token": "eyJhbGciOiJIUzI1NiIsInR5cCI6Ikp"
}
- ids : 삭제하고자 하는 wiritng의 id 배열
/writings?ids=[abc1,ac2]&start_date=2021-07-15&end_date=2021-07-16&category_ids=abc1&page=1&offset=9
{
"success": true,
//조회한 글의 데이터
"data" : {
"writing": [
{
//조회한 글의 document ID
"_id": "60eb9349615269725c7468e0",
//조회한 글의 제목
"title": "학업1",
//조회한 글의 내용
"text": "학업1",
//조회한 글의 카테고리
"category": {
//조회한 글이 속한 카테고리의 document ID
"_id": "60eb90cb615269725c7468ba",
//조회한 글이 속한 카테고리의 이름
"name": "학업",
//조회한 글이 속한 카테고리의 인덱스(몇번째 카테고리인지)
"index": 1,
//조회한 글이 속한 카테고리의 글 개수
"count": 1,
//조회한 글의 카테고리의 시그니처 컬러와 이미지
"img": "https://soptseminar5test.s3.ap-northeast-2.amazonaws.com/1-1.png",
//조회한 글의 카테고리가 생성된 날짜
"created_date": "2021-07-12T09:46:03.466Z",
},
//조회한 글이 작성된 날짜
"created_date": "2021-07-12T09:56:41.926Z"
},
{
//조회한 글의 document ID
"_id": "60eb9349615269725c7468e0",
//조회한 글의 제목
"title": "학업1",
//조회한 글의 내용
"text": "학업1",
//조회한 글의 카테고리
"category": {
//조회한 글이 속한 카테고리의 document ID
"_id": "60eb90cb615269725c7468ba",
//조회한 글이 속한 카테고리의 이름
"name": "학업",
//조회한 글이 속한 카테고리의 인덱스(몇번째 카테고리인지)
"index": 1,
//조회한 글이 속한 카테고리의 글 개수
"count": 1,
//조회한 글의 카테고리의 시그니처 컬러와 이미지
"img": "https://soptseminar5test.s3.ap-northeast-2.amazonaws.com/1-1.png",
//조회한 글의 카테고리가 생성된 날짜
"created_date": "2021-07-12T09:46:03.466Z",
},
//조회한 글이 작성된 날짜
"created_date": "2021-07-12T09:56:41.926Z",
}
]
}
}
{
//실패 status (저장 실패)
"status" : 500
"success": false,
"message": "서버 오류"
}