지갑 정보 조회
계정 로그인 후 응답 받은 au_id를 기준으로 블록체인 지갑 정보를 조회하는 api입니다.
GET
https://{point-domain}/v1.0/point/member/wallet
Query Parameters
Name
Type
Description
au_id*
string
계정 로그인/가입 시 발급 받은 au_id
Headers
Name
Type
Description
Authorization*
string
Bearer {{app-access-token}}
{
"return": 0,
"message": "success",
"value": {
"au_id": 3046,
"wallet_info": [
{
"coin_id": 1,
"coin_symbol": "COT_2",
"wallet_address": "0x71519ba71f833a85C5493061c2Af0e57DA23F70a",
"coin_quantity": "0"
},
{
"coin_id": 2,
"coin_symbol": "ONKLAY",
"wallet_address": "0x9bD841437adDfa446Cf779E2Defc702eeFcA0c10",
"coin_quantity": "0"
}
]
}
}
curl --location --request GET 'https://{point-domain}/v1.0/point/member/wallet?au_id=3046' \
--header 'Authorization: Bearer eyJhbGciOiJI...'
Last updated