-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 댓글 생성
DongGeon0908 edited this page Oct 16, 2021
·
1 revision
METHOD | URL | ... |
---|---|---|
POST | /club/{clubId}/board/{boardId}/post/{postId}/comment | 댓글 생성 |
http://3.38.13.2:8080/api/club/1/board/1/post/1/comment
{
"Content-Type": "application/json"
}
{
"content" : "댓글테스트입니다!"
}
{
"status": 201,
"message": "CREATE_COMMENT_SUCCESS",
"data": null
}
{
"status": 400,
"message": "INVALID_COMMENT_CONTENT"
}
{
"status": 400,
"message": "NOT_EXIST_MEMBER"
}
{
"status": 400,
"message": "NOT_EXIST_CLUB"
}
{
"status": 400,
"message": "NOT_EXIST_POST"
}
{
"status": 400,
"message": "NON_INCLUDE_CLUB"
}