이메일 인증번호 요청 - Willson-2019/Willson-Server GitHub Wiki
URL
[POST] ~/api/v1/willsoner/register/email/verify
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
header | Content-Type | application/json |
body | 이메일 : String ([email protected]) |
요청예시
{
"email": "[email protected]"
}
응답예시
성공
{
"code": "success",
"message": "success",
"data": {
"email": "[email protected]",
"status": "validate"
}
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
이미 등록된 이메일인 경우
{
"code": "email_already_exist",
"message": "Email is already in use."
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}