Skip to main content

Transfer between user business systems

POST: /v1/spot/balance/transfer

Parameters

ParameterTypemandatoryDefaultDescriptionRanges
bizIdstringtrueUnique id for idempotent processingMaximum length is 128
fromenumtrueFund transfer out accountbizType enum
toenumtrueFund transfer in accountbizType enum
currencystringtrueCurrency name must be all lowercase (usdt,btc)
symbolstringfalseThe transfer symbol must be all lowercase (this field must be passed if one of the transfer-in and transfer-out parties is leverage)
amountbigDecimaltrueTransfer amount
remarkstringfalsemax 256
toRemarkstringfalsemax 100
Java
  public String transferPost(){

}
Response
{
"code": 200,
"msg": "SUCCESS",
"msgInfo": [],
"data": 123456 //The returned unique id of the transfer, it is recommended to store it for reconciliation
}