Skip to content

[GET] 게시글 전체 조회

DongGeon0908 edited this page Nov 13, 2021 · 3 revisions

URL

METHOD URL ...
GET /api/club/{clubId}/board/{boardId}/post 게시글 전체 조회

Response Success

{
  "status": 200,
  "message": "READ_ALL_POST_SUCCESS",
  "data": [
    {
      "clubId": 2,
      "boardId": 3,
      "postId": 15,
      "title": "게시글 생성 처음"
    },
    {
      "clubId": 2,
      "boardId": 3,
      "postId": 16,
      "title": "게시글 생성 처음"
    }
  ]
}