POST
/
api
/
v1
/
wallet
/
transfer
/
token
curl --request POST \
  --url https://dash.betteruseblockchain.com/api/v1/wallet/transfer/token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network": "<string>",
  "to": "<string>",
  "contractAddress": "<string>",
  "amount": "<string>",
  "digits": 123,
  "fromPrivateKey": "<string>"
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Token transfer successful

The response is of type any.