-
Notifications
You must be signed in to change notification settings - Fork 1
윌스너 마이페이지홈
박지수 Jisu Park edited this page Dec 1, 2020
·
18 revisions
[GET] ~/api/v1/willsoner/mypage/home
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
status
waiting: 대기 중, complete: 완료, rejected: 반려
성공
{
"code": "success",
"message": "success",
"data": {
"gender": "남",
"pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/user_image/img_profile_m.png",
"nickname": "포스트맨",
"email": "[email protected]",
"willsoner": {
"avg_rating": "4.7",
"introduction": "윌슨 하이염",
"auth": 60,
"image": {
"pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/willsoner_image/willson_05.jpg"
},
"keywords": [
{
"name": "졸려"
},
{
"name": "키워드"
}
]
},
"point": {
"coin": "63,101 C",
"honeypot": "0개"
},
"asker_alert": {
"unread_notice": 0
},
"refund_status": "rejected"
}
}
윌스너 등록이 되지 않은 경우
{
"code": "success",
"message": "success",
"data": {
"nickname": "ㅇ",
"email": "[email protected]",
"willsoner": null,
"point": {
"coin": "1 C"
},
"asker_alert": {
"unread_notice": 0
},
}
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}