-
Notifications
You must be signed in to change notification settings - Fork 2
2.1. 내 투자내역(최신순)
Soomin edited this page Jan 3, 2020
·
4 revisions
수민
메소드 | 경로 | 설명 |
---|---|---|
GET | /mypage/fundlist | 나의 투자 내역 조회 (all) 최신순 |
Content-Type: application/json
token: "사용자 token 값"
조회 성공시
{
"status": 200,
"success": true,
"message": "펀딩 정보 조회 성공",
"data": [
{
"funding_idx": 95,
"user_idx": 12,
"store_idx": 1,
"funding_money": 2400,
"reward_percent": 0,
"funding_time": "2019-12-30T04:44:55.000Z",
"reward_money": 0
},
{
"funding_idx": 87,
"user_idx": 12,
"store_idx": 6,
"funding_money": 2400,
"reward_percent": 0,
"funding_time": "2019-12-29T11:57:39.000Z",
"reward_money": 0
},
{
"funding_idx": 77,
"user_idx": 12,
"store_idx": 4,
"funding_money": 109,
"reward_percent": 150,
"funding_time": "2019-12-29T06:59:48.000Z",
"reward_money": 0
},
{
"funding_idx": 67,
"user_idx": 12,
"store_idx": 6,
"funding_money": 13,
"reward_percent": 175,
"funding_time": "2019-12-27T19:01:16.000Z",
"reward_money": 0
}
]
}
존재하지 않는 사용자일 때
{
"status": 400,
"success": false,
"message": "해당하지 않는 userIdx값입니다."
}
INTERNAL SERVER ERROR
{
"status": 500,
"success": false,
"message": "서버 내부 오류"
}