이메일 인증코드 검증(인증)
회원가입 시 전송된 이메일 인증코드를 검증
● 검증 후 회원가입 폼
● 인증 유효시간 3분
● 이메일 인증이 완료 되면 회원가입 폼에서 10분동안 회원가입을 진행 할 수 있음
( 10 분이 지난 후에는 이메일 인증을 다시 진행)
POST
/api/v1/member/email/check
Request Headers
Name
Value
Content-Type
x-www-form-urlencoded
Accept
application/json
Request Body
Name
Type
Description
Validation
email
string
인증코드를 받은 이메일
이메일 형식
공백포함 불가
NOT NULL
authCode
string
인증코드
NOT NULL
공백포함 불가
Response
{
"status": 200,
"code": "SUCCESS REQUEST",
"data": null,
"timestamp": "2024-11-16 01:58:45"
}
Last updated