휴대폰 인증 - Willson-2019/Willson-Server GitHub Wiki
URL
[POST] ~/api/v1/asker/sign/signup/phone/verify
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
header | Content-Type | application/json |
body | phone | 핸드폰번호 : String (01000000000) |
요청예시
{
"phone":"01073718976"
}
응답예시
성공
{
"code": "success",
"message": "success",
"data": "pending"
}
이미 등록된 번호인 경우
{
"code": "phone_already_exist",
"message": "Phone is already in use."
}
탈퇴 회원인 경우
{
"code": "deleted_account",
"message": "Account is deleted."
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}