-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 게시판 생성
DongGeon0908 edited this page Oct 16, 2021
·
2 revisions
METHOD | URL | ... |
---|---|---|
POST | /api/club/{clubId}/board | 게시판 생성 |
http://3.38.13.2:8080/api/club/1/board
{
"Content-Type": "application/json"
}
{
"name" : "자유게시판",
"description" : "이것은 자유게시판 입니다!"
}
{
"status": 201,
"message": "CREATE_BOARD_SUCCESS",
"data": null
}
{
"status": 400,
"message": "INVALID_BOARD_NAME"
}
{
"status": 400,
"message": "NOT_EXIST_CLUB"
}
{
"status": 400,
"message": "NOT_EXIST_MEMBER"
}
{
"status": 400,
"message": "NON_INCLUDE_CLUB"
}