-
Notifications
You must be signed in to change notification settings - Fork 0
[PUT] 댓글 수정
DongGeon0908 edited this page Nov 16, 2021
·
1 revision
METHOD | URL | ... |
---|---|---|
PUT | /club/{clubId}/board/{boardId}/post/{postId}/comment/{commentId} | 댓글 수정 |
{
"Content-Type": "application/json"
}
{
"content" : "댓글테스트입니다!"
}
{
"status": 200,
"message": "UPDATE_COMMENT_SUCCESS",
"data": {
"clubId": 2,
"boardId": 3,
"postId": 15,
"commentId": 12,
"content": "댓글 수정함",
"nickname": "ddassadsads"
}
}