대댓글 개별 조회 (todo delete)

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

Status Code

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

Response Body

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

Last updated