-
Notifications
You must be signed in to change notification settings - Fork 2
스토리 수정
jungahshin edited this page Jan 2, 2020
·
2 revisions
메소드 | 경로 | 설명 |
---|---|---|
PUT | /timeline/{timelineIdx}/story/{storyIdx} | 스토리 수정하기 |
변수 | 타입 | 설명 |
---|---|---|
timelineIdx | INT | 수정할 스토리가 속한 타임라인 |
storyIdx | INT | 수정할 스토리 인덱스 |
/timeline/13/story/15
Content-Type: application/json
token: JWT
변수 | 타입 | 설명 |
---|---|---|
title | STRING | 스토리 제목 |
content | STRING | 스토리 내용 |
{
'title': '인턴 면접 너무 어려웠습니다',
'content':'알고리즘 질문이 많더군요.',
}
{
"success": true,
"message": "스토리 수정 성공",
"data": {
"fieldCount": 0,
"affectedRows": 1,
"insertId": 0,
"serverStatus": 2,
"warningCount": 1,
"message": "(Rows matched: 1 Changed: 1 Warnings: 1",
"protocol41": true,
"changedRows": 1
}
}
// body에 필요한 값이 들어가지 않은 경우
{
"status": 344,
"success": false,
"message": "필요한 값이 없습니다."
}
// 존재하지 않는 storyIdx일 경우
{
"status": 346,
"success": false,
"message": "존재하지 않는 스토리 입니다"
}