질문자 마이페이지홈 - Willson-2019/Willson-Server GitHub Wiki
URL
[GET] ~/api/v1/asker/mypage/home
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
- status
- waiting: 승인 대기
- approved: 승인 완료
- rejected: 반려
- complete: 승인 완료 확인
- reregister: 재신청 => 1 과 처리 동일
- 읽지 않은 공지
unread_notice: 1
응답예시
성공
{
"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]",
"point": {
"honeypot": "220개"
},
"willsoner": {
"status": "complete"
},
"asker_alert": {
"unread_notice": 1
}
}
}
윌스너 신청을 하지 않은 경우
{
"code": "success",
"message": "success",
"data": {
"nickname": "ㅇ",
"email": "[email protected]",
"point": {
"honeypot": "783개"
},
"willsoner": null,
"asker_alert": {
"unread_notice": 1
}
}
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}