-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 자기소개서 등록
DongGeon0908 edited this page Oct 4, 2021
·
2 revisions
METHOD | URL | ... |
---|---|---|
POST | /api/subscription | 자기소개서 등록 |
{
"Content-Type": "application/json",
"Authorization": "Bearer "${token}"
}
{
"name": "컴퓨터공학부",
"resume" : "자기소개서다"
}
{
"status": 201,
"message": "CREATE_SUBSCRIPTION_SUCCESS",
"data": null
}
{
"status": 400,
"message": "INVALID_CLUB_NAME"
}
{
"status": 400,
"message": "INVALID_SUBSCRIPTION_RESUME"
}
{
"status": 400,
"message": "INVALID_MEMBER_EMAIL"
}
{
"status": 400,
"message": "NOT_EXIST_MEMBER"
}
{
"status": 400,
"message": "ALREADY_SIGN_CLUB"
}