-
Notifications
You must be signed in to change notification settings - Fork 2
1.6. 사용 중인 펀디토 머니
100yeeun edited this page Jan 3, 2020
·
6 revisions
예은
메소드 | 경로 | 설명 |
---|---|---|
GET | /mypage/fund/reward | 회수가능 금액, 수익 퍼센트 조회 |
Content-Type: application/json
token: "개인 token 값"
조회 등록 성공시
{
"status": 200,
"success": true,
"message": "펀딩 정보 조회 성공",
"data": {
"totalGetMoney": 10750,
"totalFundedMoney": 6000,
"totalRewardMoney": 4750,
"totalRewardPercent": 179
}
}
없는 회원 조회
{
"status": 400,
"success": false,
"message": "해당하지 않는 userIdx값입니다."
}
INTERNAL SERVER ERROR
{
"status" : 500,
"message" : "서버 내부 에러",
"data" : null
}
DB 에러
{
"status" : 600,
"message" : "데이터베이스 에러",
"data" : null
}