Skip to content

히스토리 조회

meanjung edited this page Jan 9, 2021 · 2 revisions

메소드 경로 설명
GET /user/mypage/history 히스토리 조회

Image

android_bookstore_recommend

Request Header

{
    "Content-Type": "application/json",
    "token": jwt
}

Response Body

< Success >

  • 인증한 퀘스트가 아직 없을 때
{
    "status": 200,
    "success": false,
    "message": "지금까지 인증한 퀘스트가 없습니다."
}
  • 인증한 퀘스트가 있을 때
{
    "status": 200,
    "success": true,
    "message": "인증한 퀘스트 조회 성공",
    "data": [
        {
            "level": 1,
            "title": "느낌있게 멍때리기",
            "image": "https://sopt-server-gain.s3.ap-northeast-2.amazonaws.com/1610165580065.png",
            "completed_at": "2021-01-09 23:09:43"
        },
        {
            "level": 1,
            "title": "느낌있게 막춤 챌린지",
            "image": "https://sopt-server-gain.s3.ap-northeast-2.amazonaws.com/1610175611797.jpg",
            "completed_at": "2021-01-09 22:20:29"
        },
        {
            "level": 3,
            "title": "오늘은 나도 밀키트 요리사",
            "image": "https://sopt-server-gain.s3.ap-northeast-2.amazonaws.com/1610166753233.jpg",
            "completed_at": "2021-01-09 20:31:28"
        },
        {
            "level": 2,
            "title": "나만의 편스토랑",
            "image": "https://sopt-server-gain.s3.ap-northeast-2.amazonaws.com/1610165748887.jpg",
            "completed_at": "2021-01-09 20:31:28"
        }
    ]
}

< Fail >

  • EXPIRED TOKEN
{
    "status": 401,
    "success": false,
    "message": "토큰 값이 만료되었습니다."
}
  • EMPTY TOKEN
{
    "status": 401,
    "success": false,
    "message": "토큰 값이 없습니다."
}
  • INVALID TOKEN
{
    "status": 401,
    "success": false,
    "message": "유효하지 않은 토큰값입니다."
}
  • DB 오류
{
    "status": 600,
    "success": false,
    "message": "DB 오류"
}