Skip to content

✔ 나의 모임

Gyunny edited this page Aug 31, 2020 · 12 revisions
메소드 경로 설명
GET /user/myRoom 나의모임

Request Header

{
    "Content-Type" : "application/json",
    "token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3QzIiwibmFtZSI6Iu2FjOyKpO2KuCIsImlhdCI6MTU3NzczNTQwNSwiZXhwIjoxNTgwMzI3NDA1LCJpc3MiOiJPdW5jZV9TZXJ2ZXIifQ.V4hcw4bxwICn4p7nz15ToUw63ok-QmbIbWx7gvDMouI"
}
  • token : 엑세스 토큰

Response

< Success >

{
    "status": 200,
    "success": true,
    "message": "나의 모임 조회 성공입니다",
    "data": [
        {
            "thumbnail": "http:~~~",
            "authors": "카카오1",
            "title": "운다고 달라지는 일은 아무것도 없겠지만(리커버)",
            "info": "한줄소개입니당3"
        },
        {
            "thumbnail": "http:~~~",
            "authors": "카카오2",
            "title": "언어의 온도",
            "info": "한줄소개입니당2"
        },
        {
            "thumbnail": "http:~~~",
            "authors": "카카오3",
            "title": "자존감수업",
            "info": "한줄소개입니당1"
        }
    ]
}
  • thumbnail : 책 이미지
  • authors : 책 저자
  • title : 책 제목
  • info : 책 소개

  • 읽지 않은 채팅수 (보류)

< Fail >

  • 데이터 누락
{
    "status": 400,
    "success": false,
    "message": "필요한 값이 없습니다. "
}