-
Notifications
You must be signed in to change notification settings - Fork 1
핸드폰 인증번호 요청
박지수 Jisu Park edited this page Oct 19, 2020
·
4 revisions
[POST] ~/api/v1/willsoner/register/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."
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}