초대코드 - Willson-2019/Willson-Server GitHub Wiki
URL
[PATCH] ~/api/v1/willsoner/register/invitation
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
현재 입력 가능한 초대코드 "HELLOWILLSON"
code 입력 시 대소문자 구분
윌스너 상태 waiting -> approved
요청예시
{
"code": "HELLOWILLSON"
}
응답예시
성공
{
"code": "success",
"message": "success",
"data": {
"avg_rating": "0",
"login_at": 1599630647000,
"created_at": 1599630648000,
"updated_at": 1599630648000,
"idx": 150,
"asker_idx": 149,
"experience": "장거리 연애 경험이 있습니다",
"introduction": "윌슨 하이염",
"review_cnt": 0,
"auth": 90,
"status": "approved",
"image_idx": 2
}
}
잘못된 초대 코드를 입력한 경우
{
"code": "code_not_found",
"message": "Code is not found."
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우(윌스너 상태값이 'waiting'이 아닌 경우)
{
"code": "not_found",
"message": "Result not found"
}