-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 이메일 존재 여부
MoonAyoung edited this page Jun 5, 2021
·
1 revision
메소드 | 경로 | 설명 |
---|---|---|
GET | /api/v2/users/email-check?email=[이메일] | 이메일 존재 여부 확인 |
존재 여부에 따라 로그인인지 회원가입인지 확인합니다.
Parameter | 설명 |
---|---|
확인하려는 이메일 |
요청 예시
http://{{base_url}}/api/v2/users/email-check?email=~
- 이메일 사용 가능한 경우
{
"status": 200,
"message": "사용가능한 이메일 입니다.",
"data": null
}
- 이메일 사용 불가인 경우(중복)
{
"message": "Email is Duplication",
"status": 400,
"errors": [],
"code": "M001"
}
- 잘못된 이메일 형식
{
"message": " Invalid Input Value",
"status": 400,
"errors": [
{
"field": "email",
"value": "test",
"reason": "이메일 형식 제대로 입력해주세요."
}
],
"code": "C001"
}
- 서버 에러
{
"message": "Server Error",
"status": 500,
"errors": [],
"code": "C004"
}