-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 자기소개서 등록
DongGeon0908 edited this page Oct 17, 2021
·
2 revisions
METHOD | URL | ... |
---|---|---|
POST | /api/club/{clubId}/subscription | 자기소개서 등록 |
http://http://3.38.13.2:8080/api/club/1/subscription
{
"Content-Type": "application/json",
"Authorization": "Bearer "${token}"
}
{
"resume" : "자기소개서다"
}
{
"status": 201,
"message": "CREATE_SUBSCRIPTION_SUCCESS",
"data": null
}
{
"status": 400,
"message": "INVALID_SUBSCRIPTION_RESUME"
}
{
"status": 400,
"message": "INVALID_MEMBER_EMAIL"
}
{
"status": 400,
"message": "NOT_EXIST_MEMBER"
}
{
"status": 400,
"message": "NOT_EXIST_CLUB"
}
{
"status": 400,
"message": "ALREADY_SIGN_CLUB"
}
{
"status": 400,
"message": "ALREADY_SUBSCRIPT_CLUB"
}