Skip to content

✔토론방소개

yezgoget edited this page Aug 23, 2020 · 3 revisions
메소드 경로 설명
GET /room/roomInfo/:roomIdx 토론방소개

Request Header

{
    "Content-Type": "application/json"
}

Response

< Success >

{
    "status": 200,
    "success": true,
    "message": "토론방 소개 조회 성공",
    "data": [
        {
            "thumbnail": "http:~~~",
            "title": "이발",
            "authors": "이발사",
            "createdAt": "2020-10-09T15:00:00.000Z",
            "info": "한줄소개",
            "nickName": "h",
            "avgRating": null,
            "peopleCount": 2
        }
    ]
}
  • thumbnail : 책 썸네일 이미지
  • title : 책 제목
  • authors : 책 저자
  • createdAt : 토론방 생성 시간
  • info : 책 한줄소개
  • nickName : 토론방 방장 닉네임
  • avgRating : 토론방 방장 평점
  • peopleCount : 토론방 현재 인원수(방장 제외) ㅤ

< Fail >

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