Skip to content

[GET] 이메일 존재 여부

MoonAyoung edited this page Jun 5, 2021 · 1 revision
메소드 경로 설명
GET /api/v2/users/email-check?email=[이메일] 이메일 존재 여부 확인

존재 여부에 따라 로그인인지 회원가입인지 확인합니다.

QueryString 설명

Parameter 설명
email 확인하려는 이메일
요청 예시
http://{{base_url}}/api/v2/users/email-check?email=~

Response

< Success >

  • 이메일 사용 가능한 경우
{
  "status": 200,
  "message": "사용가능한 이메일 입니다.",
  "data": null
}
  • 이메일 사용 불가인 경우(중복)
{
  "message": "Email is Duplication",
  "status": 400,
  "errors": [],
  "code": "M001"
}

< Fail >

  • 잘못된 이메일 형식
{
  "message": " Invalid Input Value",
  "status": 400,
  "errors": [
    {
      "field": "email",
      "value": "test",
      "reason": "이메일 형식 제대로 입력해주세요."
    }
  ],
  "code": "C001"
}
  • 서버 에러
{
  "message": "Server Error",
  "status": 500,
  "errors": [],
  "code": "C004"
}