Skip to content

댓글수정

Ji Yeon Kim edited this page Jan 8, 2019 · 3 revisions

댓글 수정

지연

메소드 경로 짧은 설명
PUT /review/comment/{comment_id} 리뷰에 대한 댓글 수정

요청 헤더

Content-Type: application/json
Authorization: token

요청 바디

{
	"content" : "댓글 내용"
}

응답 바디

댓글 수정 성공

{
    "status": 200,
    "message": "댓글 수정 성공",
    "data": {
        "review_comment_id": 11,
        "user_id": "first",
        "user_name": "모카",
        "user_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/commonDefaultimage%403x.png",
        "review_comment_content": "sdfsdf",
        "review_comment_date": "2019-01-08T12:21:47.000+0000",
        "time": "방금 전",
        "auth": true
    }
}

존재하지 않는 댓글 조회

{
    "status": 204,
    "message": "댓글을 찾을 수 없습니다",
    "data": null
}

인증 실패

{
    "status" : 401,
    "message" : "인증 실패",
    "data" : null
}

INTERNAL SERVER ERROR

{
    "status": 500,
    "message": "서버 내부 에러",
    "data": null
}
Clone this wiki locally