Skip to content

이메일중복

Bohyeon Kim edited this page Feb 28, 2022 · 1 revision
메소드 경로 짧은 설명
POST auth/check_duplicate_email 이메일 중복 확인

요청 헤더

Content-Type: application/json

요청 바디

{
    "email": "test@naver.com"
}

응답 바디

중복되는 email 존재하지 않음

{
    "status": 200,
    "success": true,
    "message": "중복되는 email이 없습니다."
}

중복되는 email 존재

{
    "status": 200,
    "success": false,
    "message": "중복되는 email이 있습니다."
}