-
Notifications
You must be signed in to change notification settings - Fork 1
이메일 인증번호 확인
박지수 Jisu Park edited this page Apr 5, 2020
·
2 revisions
[POST] ~/api/v1/willsoner/register/email/check
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
header | Content-Type | application/json |
body | code | 인증번호 : Int (123123) |
{
"code": 123123
}
성공
{
"code": "verification_approved",
"message": "Verification approved."
}
인증번호가 틀린 경우
{
"code": "wrong_verification_code",
"message": "Wrong verification code."
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}