Skip to content

타임라인 삭제

ujusy edited this page Jan 1, 2020 · 2 revisions

타임라인 삭제

Request

URL

메소드 경로 설명
DELETE /timeline/{timelineIdx} 프로필 타임라인 삭제

Params Description

변수 타입 설명
timelineIdx INT 특정 타임라인 Idx
/timeline/1

Header

Content-Type: application/json
token: JWT

Response

Body

SUCCESS

{
    "success": true,
    "message": "타임라인 삭제 성공",
    "data": {
        "fieldCount": 0,
        "affectedRows": 1,
        "insertId": 0,
        "serverStatus": 2,
        "warningCount": 0,
        "message": "",
        "protocol41": true,
        "changedRows": 0
    }
}

FAIL

{
	  "status": 340,
    "success": false,
    "message": "존재하지 않는 타임라인 입니다."
}