댓글 개별 조회 (todo delete)

GET /api/*board/{*board-id}/comment/{comment-id}

todo ) 댓글 개별 조회 api 필요?

Status Code

200: 댓글 조회
404: 존재하지 않음
500: 서버 에러

Response Body

{
        "commentId" : long,
        "content" : String, // 댓글내용 
        "memberId" : long,
        "nickname" : String, // 작성자 닉네임
        "email" : String,
        "profileImageUrl" : String //프로필이미지
        "recommntCount": long,
        "createdAt": "2023-04-19T12:05:43.529109", // 작성 시간
        "modifiedAt": "2023-04-19T12:05:43.529109", // 수정 시간
        "recommnts": []
}

Last updated