-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 특정 책의 모임 조회
Gyunny edited this page Sep 23, 2021
·
9 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /group/book | 특정 책의 모임 조회 |
{
"Content-Type": "application/json",
"accessToken" : "JWT 토큰"
}
Parameter | 설명 | 값 |
---|---|---|
isbn | 책 고유 번호 | ex): 12345 |
page | 페이지네이션 값 | ex): 1, 2, 3, 4 ... |
{base_url}/group/book?isbn=12345&page=1
{
"status": 200,
"data": {
"groups": [
{
"discussionGroupId": 47,
"description": "테스트 토론방11",
"createdAt": "2021-07-18",
"remainingDay": 20,
"title": "테스트제목",
"image": "테스트 책 이미지 주소",
"author": "테스트저자",
"nickname": "규니니"
}
]
}
}