POST
/
wallet
/
transfer
curl --request POST \
  --url https://staging-biz.coinprofile.co/v2/wallet/transfer \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Api-User: <api-key>' \
  --header 'X-User-Version: <api-key>' \
  --data '{
  "network": "<string>",
  "currency": "<string>",
  "address": "<string>",
  "amount": 123,
  "walletType": "<string>",
  "memo": "<string>"
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "transferDetail": {
      "transactionId": "<string>",
      "sender": "<string>",
      "type": "<string>",
      "status": "<string>",
      "date": "<string>",
      "toCurrency": "<string>",
      "fromCurrency": "<string>",
      "receiveAmount": 123,
      "amount": 123,
      "address": "<string>",
      "memo": "<string>",
      "username": "<string>"
    }
  }
}

Authorizations

X-Api-User
string
header
required
X-Api-Key
string
header
required
X-User-Version
string
header
required

Body

application/json

Response

200 - application/json

successful operation

The response is of type object.