Skip to content

[GET] 게시글 단건 조회

DongGeon0908 edited this page Nov 13, 2021 · 2 revisions

URL

METHOD URL ...
GET /api/club/{clubId}/board/{boardId}/post/{postId} 게시글 단건 조회

Response Success

{
  "status": 200,
  "message": "READ_POST_SUCCESS",
  "data": {
    "clubId": 2,
    "boardId": 3,
    "postId": 15,
    "title": "게시글 생성 처음",
    "content": "게시글 생성 완료했어요!!",
    "memberId": 3
  }
}