Partner

Query the balance and deposit address of the partner.

Every request must contain common parameters

Demo code can be found at Github

Partner Balance

POST /v1/balance/partner

Query the balance of the partner

Request Body

NameTypeDescription

currency*

String

which the balance needs to be queried.

{
  "code": "200",
  "data": {
    "currency": "USDT_TRC20",
    "balance": "100",
    "availableBalance": "100",,
    "freezeBalance": "0",
    "pendingSettleBalance": "0"
  },
  "message": "success"
}

Partner Address

POST /v1/balance/partner-address

Query the Address of the partner

Request Body

NameTypeDescription

currency*

String

which the balance needs to be queried.

description*

String

description

{
  "code": "200",
  "data": {
    "currency": "USDT_ERC20",
    "partner_id": "2001xx34",
    "address": "0x396795DdEFf2119820CddddsfderwfbB1860A",,
    "tag": "",
    "description": "111"
  },
  "message": "success"
}

Last updated