-
Notifications
You must be signed in to change notification settings - Fork 4
3.4.3 단일 콘텐츠 삭제
Gobukgol edited this page Jul 5, 2019
·
2 revisions
메소드 | 경로 | 기능 설명 |
---|---|---|
PUT | BASEURL/contents/delete/:contents_idx | 단일 콘텐츠 삭제 |
Content-Type: application/json
accesstoken: "제공된 액세스 토큰"
contents_idx: 삭제할 콘텐츠 idx
- status: 200 (OK)
- body : {
"status": 200,
"success": true,
"message": "콘텐츠 삭제 성공"
}
- status: 200
- body : {
"status": 401,
"success": false,
"message": "유효한 토큰이 아닙니다."
}
- status: 200
- body : {
"status": 401,
"success": false,
"message": "유효한 토큰이 아닙니다."
}
- status: 200
- body : {
"status": 401,
"success": false,
"message": "만료된 토큰입니다."
}
- status: 200
- body : {
"status": 600,
"success": false,
"message": "DB조회 실패"
}
- status: 500 (INTERNAL_SERVER_ERROR)