지갑 정보 조회
계정 로그인 후 응답 받은 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"
}
]
}
}key
data type
desc.
au_id
int64
계정 au_id
wallet_info
object array
지갑 정보 배열
coin_id
int64
코인 id
coin_symbol
string
코인 심볼 정보
wallet_address
string
지갑 주소
coin_quantity
string
코인 수량
return
message
desc
0
success
성공
12000
Requires valid 'au_id' information.
유효한 au_id 정보 필요
19000
Internal DB error
DB 관련 에러
20004
Invalid jwt token
유효하지 못한 auth token
Last updated