-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 회원가입
DongGeon0908 edited this page Oct 16, 2021
·
6 revisions
METHOD | URL | ... |
---|---|---|
POST | /api/member/sign | 회원가입 |
{
"Content-Type": "application/json"
}
{
"email": "[email protected]",
"password": "!oinging1234",
"name": "김오잉",
"nickname": "외쳐김오잉",
"phoneNumber": "01012345678"
}
{
"status": 201,
"message": "SIGN_SUCCESS",
"data": null
}
{
"status": 400,
"message": "INVALID_MEMBER_NAME"
}
{
"status": 400,
"message": "INVALID_MEMBER_EMAIL"
}
{
"status": 400,
"message": "INVALID_MEMBER_NICKNAME"
}
{
"status": 400,
"message": "INVALID_MEMBER_PHONE_NUMBER"
}
{
"status": 400,
"message": "INVALID_MEMBER_PASSWORD"
}
{
"status": 400,
"message": "DUPLICATION_MEMBER_EMAIL"
}
{
"status": 400,
"message": "DUPLICATION_MEMBER_NICKNAME"
}
{
"status": 400,
"message": "DUPLICATION_MEMBER_PHONE_NUMBER"
}