-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 게시물 생성
DongGeon0908 edited this page Oct 16, 2021
·
1 revision
METHOD | URL | ... |
---|---|---|
GET | /api/club/{clubId}/board/{postId}/post | 게시물 생성 |
{
"Content-Type": "application/json"
}
{
"title" : "게시글 생성 처음",
"content" : "게시글 생성 완료했어요!!"
}
{
"status": 201,
"message": "CREATE_POST_SUCCESS",
"data": null
}
{
"status": 400,
"message": "INVALID_BOARD_NAME",
}
{
"status": 400,
"message": "NOT_EXIST_MEMBER",
}
{
"status": 400,
"message": "NOT_EXIST_CLUB",
}
{
"status": 400,
"message": "NOT_EXIST_BOARD",
}
{
"status": 400,
"message": "NON_INCLUDE_CLUB",
}
{
"status": 400,
"message": "NON_INCLUDE_CLUB",
}