Skip to content

[GET] 특정 책의 모임 조회

Gyunny edited this page Sep 23, 2021 · 9 revisions
메소드 경로 설명
GET /group/book 특정 책의 모임 조회
스크린샷 2021-08-02 오후 1 52 45

Request Header

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



QueryString 설명

Parameter 설명
isbn 책 고유 번호 ex): 12345
page 페이지네이션 값 ex): 1, 2, 3, 4 ...
{base_url}/group/book?isbn=12345&page=1

Response

< Success >

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