1. 회원가입
1.1. 회원가입
1.1.1. 성공
HTTP request
POST /api/v1/members HTTP/1.1
Content-Type: application/json
Content-Type: application/json
Content-Length: 214
Host: localhost:8080
{
"loginId" : "test1234",
"username" : "이호석",
"nickname" : "키다리",
"password" : "!Asdf1234",
"passwordConfirmation" : "!Asdf1234",
"email" : "test1234@test.com",
"phone" : "010-0000-0000"
}
HTTP response
HTTP/1.1 201 Created
1.1.2. 실패
비밀번호 확인이 다른경우
HTTP request
POST /api/v1/members HTTP/1.1
Content-Type: application/json
Content-Type: application/json
Content-Length: 208
Host: localhost:8080
{
"loginId" : "test1234",
"username" : "이호석",
"nickname" : "키다리",
"password" : "!Asdf1234",
"passwordConfirmation" : "123",
"email" : "test1234@test.com",
"phone" : "010-0000-0000"
}
HTTP response
HTTP/1.1 400 Bad Request
Content-Type: application/json
Content-Length: 107
{
"message" : "비밀번호와 비밀번호 확인이 일치하지 않습니다.",
"errorCode" : 2004
}
비밀번호 형식이 잘못된 경우
HTTP request
POST /api/v1/members HTTP/1.1
Content-Type: application/json
Content-Type: application/json
Content-Length: 226
Host: localhost:8080
{
"loginId" : "test1234",
"username" : "이호석",
"nickname" : "키다리",
"password" : "invalidPassword",
"passwordConfirmation" : "invalidPassword",
"email" : "test1234@test.com",
"phone" : "010-0000-0000"
}
HTTP response
HTTP/1.1 400 Bad Request
Content-Type: application/json
Content-Length: 198
{
"message" : "비밀번호는 최소 8자이상 ~ 20자이하 까지 이며 하나 이상의 대문자, 소문자, 숫자, 특수 문자(@$!%*#?&)를 가져야 합니다.",
"errorCode" : 2005
}
아이디 형식이 잘못된 경우
HTTP request
POST /api/v1/members HTTP/1.1
Content-Type: application/json
Content-Type: application/json
Content-Length: 229
Host: localhost:8080
{
"loginId" : "123invalidLoginIdFormat",
"username" : "이호석",
"nickname" : "키다리",
"password" : "!Asdf1234",
"passwordConfirmation" : "!Asdf1234",
"email" : "test1234@test.com",
"phone" : "010-0000-0000"
}
HTTP response
HTTP/1.1 400 Bad Request
Content-Type: application/json
Content-Length: 186
{
"message" : "로그인 아이디는 소문자 영문과 숫자로만(7 ~ 20자) 이루어져 있어야 하며, 반드시 영문으로 시작해야 합니다.",
"errorCode" : 2003
}
이미 존재하는 아이디인 경우
HTTP request
POST /api/v1/members HTTP/1.1
Content-Type: application/json
Content-Type: application/json
Content-Length: 225
Host: localhost:8080
{
"loginId" : "duplicateloginid123",
"username" : "이호석",
"nickname" : "키다리",
"password" : "!Asdf1234",
"passwordConfirmation" : "!Asdf1234",
"email" : "test1234@test.com",
"phone" : "010-0000-0000"
}
HTTP response
HTTP/1.1 400 Bad Request
Content-Type: application/json
Content-Length: 82
{
"message" : "이미 존재하는 아이디 입니다.",
"errorCode" : 2001
}
이미 존재하는 닉네임인 경우
HTTP request
POST /api/v1/members HTTP/1.1
Content-Type: application/json
Content-Type: application/json
Content-Length: 219
Host: localhost:8080
{
"loginId" : "test123",
"username" : "이호석",
"nickname" : "중복닉네임",
"password" : "!Asdf1234",
"passwordConfirmation" : "!Asdf1234",
"email" : "test1234@test.com",
"phone" : "010-0000-0000"
}
HTTP response
HTTP/1.1 400 Bad Request
Content-Type: application/json
Content-Length: 82
{
"message" : "이미 존재하는 닉네임 입니다.",
"errorCode" : 2002
}