Skip to content

회원가입

HyeonJooo edited this page Nov 13, 2020 · 6 revisions

회원가입 (/users/signup)

회원가입 회원가입

Request

URL

[POST] ~/users/signup

Header

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

Body

변수 타입 설명
email String 회원가입할 이메일 주소
password String 회원가입할 비밀번호
name String 회원가입할 이름(닉네임)
{
    "email":"[email protected]",
    "password":"haelykim",
    "name":"haely"
}

Response

SUCCESS

{
    "status": 200,
    "success": true,
    "message": "회원 가입 성공",
    "data": {
        "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZHgiOjk1LCJuYW1lIjoiMTEyMzEyMzEyMyIsImlhdCI6MTYwNTI0MTkwMSwiZXhwIjoxNjA1MjQ5MTAxLCJpc3MiOiJtb25nbGUifQ.hPZonoSJuOLB8s-xMv7rGcXGm3MH3sjGmlnIs4GIZe8"
    }
}

FAIL : body 값이 없는 경우

{
    "status": 400,
    "success": false,
    "message": "필요한 값이 없습니다"
}

FAIL : 서버 내부 에러의 경우

{
    "status": 600,
    "success": false,
    "message": "서버 내부 오류"
}
Clone this wiki locally