Skip to content

[GET] 특정 카테고리 별 새로나온 모임 조회

Bobae Kim edited this page Oct 8, 2021 · 5 revisions
메소드 경로 설명
GET /group/new/specific-category 특정 카테고리 별 새로나온 모임 조회
스크린샷 2021-08-02 오후 2 22 52



QueryString 설명

Parameter 설명
category 카테고리 ex): 그 외, 문학, 기술과학 등
currentGroupCount 특정 카테고리의 현재까지의 데이터(모임) 개수 (paging 처리를 위해 필요) ex): 1, 2, 3 ...
{base_url}/group/new/specific-category?category={Category string}&currentGroupCount={countOfGroupData}

Request Header

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



QueryString 설명

Parameter 설명
currentGroupCount 참고 ex): 1
{base_url}/group/new/specific-category/순수과학?currentGroupCount=1

Response

< Success >

{
    "status": 200,
    "data": {
        "groupsByCategory": [
            {
                "discussionGroupId": 39,
                "description": "421412fdsafdfsf이거말야 이거거",
                "createdAt": "2020-05-01",
                "remainingDay": 2,
                "title": "제목",
                "image": "이미지주소",
                "author": "저자",
                "nickname": "규니니"
            }
        ]
    }
}