Skip to content

회원가입

Min Joon edited this page Nov 23, 2019 · 16 revisions

회원가입(~/users/signup)

Request

URL

[post] ~/users/signup

Header

메소드 파라미터 설명
Content-Type application/json

Body

변수 타입 설명
userId String 회원 아이디 //not null
userPwd String 회원 비밀번호 //not null
{
    "userId":"hello", //not_null
    "userPwd":"1234", //not_null
}

Response

Body

SUCCESS

{
    "status": 200,
    "success": true,
    "message": "회원가입 성공"
}

FAIL

{
    "status": 400,
    "success": false,
    "message": "회원가입 실패"
}
Clone this wiki locally