-
Notifications
You must be signed in to change notification settings - Fork 4
댓글수정
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
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}