-
Notifications
You must be signed in to change notification settings - Fork 1
이메일중복
Bohyeon Kim edited this page Feb 28, 2022
·
1 revision
메소드 | 경로 | 짧은 설명 |
---|---|---|
POST | auth/check_duplicate_email | 이메일 중복 확인 |
Content-Type: application/json
{
"email": "test@naver.com"
}
{
"status": 200,
"success": true,
"message": "중복되는 email이 없습니다."
}
{
"status": 200,
"success": false,
"message": "중복되는 email이 있습니다."
}