Skip to content

타임라인 조회

jiss02 edited this page Jan 1, 2020 · 2 revisions

타임라인 조회

Request

URL

메소드 경로 설명
POST /timeline/list 유저의 타임라인 조회

Header

Content-Type: application/json
token: JWT

Body

변수 타입 설명
userIdx INT 타임라인을 조회하고 싶은 유저의 Idx
{
	"userIdx": 3
}

Response

Body

SUCCESS

{
    "status": 200,
    "success": true,
    "message": "타임라인 조회 성공",
    "data": [
        {
            "timelineIdx": 41,
            "userIdx": 30,
            "title": "아이오 오로라 마케팅 인턴",
            "start_date": "2019-09-26",
            "end_date": "2020-01-21",
            "category": "인턴"
        },
        {
            "timelineIdx": 42,
            "userIdx": 30,
            "title": "솝트 25TH 기획 파트",
            "start_date": "2019-09-26",
            "end_date": "2020-01-21",
            "category": "동아리"
        },
        {
            "timelineIdx": 44,
            "userIdx": 30,
            "title": "M-project 마케팅 학회",
            "start_date": "2019-04-01",
            "end_date": null,
            "category": "동아리"
        },
        {
            "timelineIdx": 50,
            "userIdx": 30,
            "title": "HUB-HR 이대 인사학회",
            "start_date": "2019-03-16",
            "end_date": "2019-09-16",
            "category": "동아리"
        },
        {
            "timelineIdx": 49,
            "userIdx": 30,
            "title": "에듀플렉스 튜터 (영어)",
            "start_date": "2019-02-15",
            "end_date": "2019-08-12",
            "category": "대외활동"
        },
        {
            "timelineIdx": 46,
            "userIdx": 30,
            "title": "Western Illinois University 교환학생",
            "start_date": "2018-08-15",
            "end_date": "2018-12-15",
            "category": "대외활동"
        },
        {
            "timelineIdx": 55,
            "userIdx": 30,
            "title": "멋쟁이 사자처럼 6기",
            "start_date": "2018-03-14",
            "end_date": "2018-12-08",
            "category": "공모전"
        }
    ]
}

FAIL

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