/api/v1/members/signup
POST
{
"email":"[email protected]",
"nickname" : "잔소리대마왕",
"birth": 1999,
"genderId": 1,
}
Path | Type | 설명 | 필수여부 | 규칙 |
---|---|---|---|---|
String | 이메일 | O | ||
nickname | String | 닉네임 | O | 20바이트 제한, 특수문자(~!@#$%^&*()), 공백 제외 |
birth | Long | 생년 | O | 1900~현재년도 |
genderId | Long | 성별 | O | 0 = 남자 |
1 = 여자 | ||||
2 = 미공개 | ||||
3 = 알수없음 |
Path | Type | Description |
---|---|---|
status | Long | 결과 코드 |
message | String | 결과 메세지 |
// 회원가입 성공 시
{
"status" : 200
"message" : "Success"
}
//회원가입 성공 시
{
"memberId": 1
}
<aside> ⚠️ ERROR