-
Notifications
You must be signed in to change notification settings - Fork 0
회원가입
Min Joon edited this page Nov 23, 2019
·
16 revisions
[post] ~/users/signup
메소드 | 파라미터 | 설명 |
---|---|---|
Content-Type | application/json |
변수 | 타입 | 설명 |
---|---|---|
userId | String | 회원 아이디 //not null |
userPwd | String | 회원 비밀번호 //not null |
{
"userId":"hello", //not_null
"userPwd":"1234", //not_null
}
{
"status": 200,
"success": true,
"message": "회원가입 성공"
}
{
"status": 400,
"success": false,
"message": "회원가입 실패"
}