Check balance

Check balance

post

Description: Transaction Bridge balance query

group=tradeApi 
version=0.0.1 
bizType=tradeapi.admin.AccountAdminService.queryBalances 
Header parameters
companyIdstringoptionalExample: {{company}}
tracestringoptionalExample: {{mock_trace}}
apiKeystringoptionalExample: {{apikey}}
recvWindowstringoptionalExample: 5000
signaturestringoptionalExample: {{sign}}
langstringoptionalExample: zh-CN
versionstringoptionalExample: 0.0.1
groupstringoptionalExample: tradeApi
Body
tradeTypeinteger · longrequired

Game type. 10-Transaction Bridge;

exchangeIdstringrequired

Platform identifier. binance-Binance; okx-OUYi

accountNamestringrequired

Platform account alias

customerIdinteger · longoptional

CustomerId

customerNostringrequired

Customer code

customerGroupIdinteger · longrequired

Customer group ID

omitZeroBalancesbooleanoptional

Hide any zero balances. Default is false, zero balance assets are not hidden

currencystringoptional

Filter currencies. Multiple currencies are divided by . case sensitive

Responses
curl -L \
  --request POST \
  --url '/global/tradeapi.admin.AccountAdminService.queryBalances' \
  --header 'Content-Type: application/json' \
  --data '{
    "tradeType": 1,
    "exchangeId": "text",
    "accountName": "text",
    "customerId": 1,
    "customerNo": "text",
    "customerGroupId": 1,
    "omitZeroBalances": true,
    "currency": "text"
  }'
{
  "bizCode": "text",
  "code": "text",
  "msg": "text",
  "tm": 1,
  "trace": "text",
  "msgParams": "text",
  "ok": true,
  "fail": true,
  "data": [
    {
      "currency": "text",
      "balance": "text",
      "locked": "text"
    }
  ]
}

Last updated