Make Internal Transfer
Make Internal Transfer
Make internal transfer
Request frequency limit: 1/1s
Request URL
POST /deepcoin/internal-transfer
Request Parameters
Field Name | Required | Type | Description |
---|---|---|---|
amount | true | string | Transfer amount, excluding fees |
coin | true | string | Currency |
receiverAccount | false | string | Recipient account |
accountType | false | string | Recipient account type |
receiverUID | true | string | Recipient UID |
Request Example
{
"amount": "10",
"coin": "BNB",
"receiverAccount": "test@deepcoin.com",
"accountType": "email",
"receiverUID": "123456"
}
Response Parameters
Field Name | Type | Description |
---|---|---|
message | string | Error message |
orderId | string | Order ID |
Response Example
{
"code": "0",
"msg": "",
"data": {
"message": "success",
"orderId": "40ce50f2-a96d-4efc-8168-148fd82df25f"
}
}