Skip to content

userSignup

Hyun-juhee edited this page Jan 1, 2020 · 1 revision

회원가입


[POST] ~/users/signup


Request-Header

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

Request-Body

이름 type 설명
email string 이메일 주소
nickname string 닉네임
password string 비밀번호

Response - body

SUCCESS
{
   {
    "status": 200,
    "message": "회원가입 성공",
    "data": {
        "id": 1,
        "email": "[email protected]",
        "nickname": "JO",
        "salt": "1f44414635c804244d60bc3c734fdd8b1ad93b0c8646eab3c9ca1e51901b48fe",
        "password": "e94ff1102035c99c7d90a78109045b6bdfece44671b0dda8cad977f04315c133",
        "img": null
    },
    "success": true
}
}
FAIL 1 : 필요한 값이 하나이상 없을때
{
    "status": 400,
    "message": "필요한 값이 없습니다, nickname",
    "success": false
}
FAIL 2 : 서버 내부 오류
{
    "json": {
        "status": 500,
        "success": false
    }
}
Clone this wiki locally