-
Notifications
You must be signed in to change notification settings - Fork 1
회원가입
황규철 edited this page Nov 8, 2020
·
1 revision
메소드 | 경로 | 설명 |
---|---|---|
POST | /auth/signup | 회원가입 |
Content-Type: application/json
{
"id" : "abc@gmail.com",
"nickname" : "닉네임",
"password" : "1234567",
"gender" : "M" or "F",
"birthDate" : "1999-12-31"
}
{
"status": 200,
"success": true,
"message": "회원가입 성공",
}
{
"status": 200,
"success": false,
"message": "회원가입 실패"
}