내 코인 정보 보정

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 ''

Last updated