POST
/
api
/
v1
/
wallet
/
enable-receive
/
token
cURL
curl --request POST \
  --url https://dash.betteruseblockchain.com/api/v1/wallet/enable-receive/token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network": "ALGO",
  "assetId": "<string>",
  "fromPrivateKey": "<string>"
}'
{
  "data": {
    "txId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
network
enum<string>
required

The blockchain network (only accepts Algorand).

Available options:
ALGO
assetId
string
required

The ID of the asset to be enabled.

fromPrivateKey
string
required

The private key of the wallet that wants to receive the token.

Response

Token receiving enabled successfully.

data
object