내 코인 정보 보정
POST
https://{dashboard-domain}/v1.0/db/me/coin/reload
Headers
Name
Type
Description
Authorization*
string
Bearer {{web-access-token}}
// '지갑 정보 조회' api 응답과 동일
{
"return": 0,
"message": "success",
"value": [
{
"coin_id": 4,
"base_coin_id": 1,
"wallet_address": "0x52D7A9eaF6a3E625B7D070d16A82990152DE37FC",
"quantity": 0.063425147,
"today_acq_quantity": 0.063424147,
"today_cnsm_quantity": -0.005571,
"today_acq_exchange_quantity": 0,
"today_cnsm_exchange_quantity": 0,
"reset_date": "2022-04-12T00:00:00Z"
},
{
"coin_id": 2,
"base_coin_id": 1,
"wallet_address": "0x52D7A9eaF6a3E625B7D070d16A82990152DE37FC",
"quantity": 3070.9996,
"today_acq_quantity": 3070.9996,
"today_cnsm_quantity": -2970.000199997,
"today_acq_exchange_quantity": 0,
"today_cnsm_exchange_quantity": 0,
"reset_date": "2022-04-12T00:00:00Z"
}
]
}
curl --location --request POST 'https://localhost:51031/v1.0/db/me/coin/reload' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsI....' \
--data-raw ''
key
data type
desc.
coin_id
int
coin id
base_coin_id
int64
베이스 코인 id
coin_symbol
string
코인 심볼
wallet_address
string
지갑 주소
quantity
int64
보유 수량
today_acq_quantity
int64
일일 획득량
today_cnsm_quantity
int64
일일 소모량
today_acq_exchange_quantity
float64
일일 획득 전환량
today_cnsm_exchange_quantity
float64
일일 소모 전환량
reset_date
string
초기화 날짜
return
message
desc.
0
success
성공
20004
Invalid jwt token
유효하지 않은 액세스 토큰
500
internal server error
Last updated