PLAY-CHAT-TEAM / play-chat-backend

Chat website using Spring Boot
2 stars 0 forks source link

회원가입시 사용가능한 이메일인지 확인하는 api 구현 #36

Closed khcho902 closed 2 years ago

khcho902 commented 2 years ago

사용가능한 이메일인지 확인하는 api 구현

[request]

GET /api/members/check-available-email?email={email}

[response]

성공: 200 OK
{
  "available" : "true" (사용가능) or "false"(사용 불가능)
}

실패: 400 (이메일 형식에 맞지 않거나 비어있는 값)

reference