-
Notifications
You must be signed in to change notification settings - Fork 2
스토리 삭제
jiss02 edited this page Jan 1, 2020
·
2 revisions
메소드 | 경로 | 설명 |
---|---|---|
DELETE | /timeline/{timelineIdx}/story/{storyIdx} | 스토리 삭제하기 |
변수 | 타입 | 설명 |
---|---|---|
timelineIdx | INT | 삭제할 스토리가 속한 타임라인 인덱스 |
storyIdx | INT | 삭제할 스토리 인덱스 |
/timeline/4/story
Content-Type: application/json
token: JWT
{
"success": true,
"message": "스토리 삭제 성공",
"data": {
"fieldCount": 0,
"affectedRows": 1,
"insertId": 0,
"serverStatus": 2,
"warningCount": 0,
"message": "",
"protocol41": true,
"changedRows": 0
}
}
// 존재하지 않는 storyIdx일 경우
{
"status": 346,
"success": false,
"message": "존재하지 않는 스토리 입니다"
}