App 별 총/금일 누적 코인 리스트 조회
GET https://{dashboard-domain}/v1.0/db/me/coin/list
Headers
Name
Type
Description
Authorization*
string
Bearer {{web-access-token}}
{
"return": 0,
"message": "success",
"value": [
{
"coin_id": 1,
"coin_symbol": "COT_2",
"wallet_address": "0x2298f0Aeee5ba773753E50046a74D42b9bb5247c",
"quantity": 5,
"today_acq_quantity": 2,
"today_cnsm_quantity": -1,
"reset_date": "2022-01-27T00:00:00Z"
}
]
}curl --location --request GET 'https://{dashboard-domain}/v1.0/db/me/coin/list' \
--header 'Authorization: Bearer eyJhbGciOiJ...'key
data type
desc.
coin_id
int
coin id
coin_symbol
string
코인 심볼
wallet_address
string
지갑 주소
quantity
float64
코인량
today_acq_quantity
float64
외부 지갑을 통한 일일 획득량
today_cnsm_quantity
float64
외부 지갑을 통한 일일 소모량
today_acq_exchange_quantity
float64
일일 획득 전환량
today_cnsm_exchange_quantity
float64
일일 소모 전환량
reset_date
string
초기화 날짜
return
message
desc.
0
success
성공
20004
Invalid jwt token
유효하지 않은 액세스 토큰
34004
GetMeCoinList DB Scan Error
DB 스캔 에러
Last updated