Skip to content

[GET] 특정 책의 모임 조회

Gyunny edited this page Aug 2, 2021 · 9 revisions
메소드 경로 설명
GET /api/v2/group/book 특정 책의 모임 조회

Request Header

{
    "Content-Type": "application/json",
    "accessToken" : "JWT 토큰"
}

Response

< Success >

{
    "status": 200,
    "data": {
        "groups": [
            {
                "discussionGroupId": 47,
                "description": "테스트 토론방11",
                "createdAt": "2021-07-18",
                "remainingDay": 20,
                "title": "테스트제목",
                "image": "테스트 책 이미지 주소",
                "author": "테스트저자",
                "nickname": "규니니"
            }
        ]
    }
}