-
Notifications
You must be signed in to change notification settings - Fork 2
스크랩한 스토리 조회
jiss02 edited this page Jan 1, 2020
·
1 revision
메소드 | 경로 | 설명 |
---|---|---|
GET | /timeline/{timelineIdx}/story/{storyIdx}/scrap | 스크랩 전체 조회 |
변수 | 타입 | 설명 |
---|---|---|
timelineIdx | INT | 스크랩 취소할 스토리가 속한 타임 라인 인덱스 |
storyIdx | INT | 스크랩 취소할 스토리 인덱스 |
/timeline/13/story/16/scrap
Content-Type: application/json
token: JWT
{
"success": true,
"message": "스크랩 전체 조회 성공",
"data": [
{
"storyIdx": 16,
"timelineIdx": 13,
"userIdx": 2,
"title": "스노우 인턴 합격 후기",
"content": "동계 체험형 인턴으로 진행되었던 것에 합격하였습니다",
"count": 0,
"created_date": "2019-12-28",
"updated_date": "2019-12-28"
}
]
}
// 타임라인이 존재하지 않는 경우
{
"status": 340,
"success": false,
"message": "존재하지 않는 타임라인 입니다."
}
// 스토리가 존재하지 않는 경우
{
"status": 344,
"success": false,
"message": "존재하지 않는 스크랩 입니다."
}