Skip to main content

Transfer

Transfer

HTTP Request

POST /contract/v3/private/copytrading/wallet/transfer

Request Parameters

ParameterRequiredTypeComments
transferIdtruestringUUID, which is unique across the platform
cointruestringCurrency. USDT only
amounttruestringExchange to amount
fromAccountTypetruestringAccount type
toAccountTypetruestringAccount type

Response Parameters

ParameterTypeComments
transferIdstringUUID, which is unique across the platform

Request Example

POST /contract/v3/private/copytrading/wallet/transfer HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN-TYPE: 2
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1673257786588
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json
Content-Length: 173

{
"transferId": "5f95de08-b10f-43be-9746-7b95c4a37d307",
"coin": "USDT",
"amount": "500",
"fromAccountType": "UNIFIED",
"toAccountType": "COPYTRADING"
}

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"transferId": "5f95de08-b10f-43be-9746-7b95c4a37d307"
},
"retExtInfo": {},
"time": 1673258002526
}