-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 클럽 생성
DongGeon0908 edited this page Oct 2, 2021
·
3 revisions
METHOD | URL | ... |
---|---|---|
POST | /api/club | 회원가입 |
{
"Content-Type": "application/json",
"Authorization": "Bearer "${token}"
}
{
"name": "안녕",
"image": "dsadsadadasdads",
"branch": "PERFORMING_ARTS"
}
{
"status": 201,
"message": "CREATE_CLUB_SUCCESS",
"data": null
}
{
"status": 400,
"message": "INVALID_CLUB_NAME"
}
{
"status": 400,
"message": "DUPLICATION_CLUB_NAME"
}