윌스너 코인내역 - Willson-2019/Willson-Server GitHub Wiki
URL
[GET] ~/api/v1/willsoner/mypage/transaction
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
action: 적립(==리워드), 환급(status: 1 waiting 승인 대기, 2 rejected 반려, 3 complete 지급 완료)
amount: +- 코인
total: 남은 코인
응답예시
성공
{
"code": "success",
"message": "success",
"data": {
"coin": "31,700 C",
"transactions": [
{
"idx": 321,
"action": "환급",
"amount": 10000,
"total": 21000,
"date": "20.10.07",
"refund_transaction": null
},
{
"idx": 322,
"action": "환급",
"amount": 10000,
"total": 11000,
"date": "20.10.08",
"refund_transaction": {
"status": "waiting"
}
},
{
"idx": 323,
"action": "환급",
"amount": 10000,
"total": 1000,
"date": "20.10.08",
"refund_transaction": {
"status": "waiting"
}
}
]
}
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}