POST
/
management
/
smart-contract
/
transfer
curl --request POST \
  --url https://dev-api.rootkey.ai/api-v1/management/smart-contract/transfer \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "ownerWallet": "<string>",
  "destinationWallet": "<string>",
  "tokenID": null,
  "type": "rootkey",
  "subType": "sec1"
}'
{
  "validation": {
    "ownership": true,
    "integrity": true,
    "validity": true
  }
}

Authorizations

x-api-key
string
header
required

Body

application/json
Smart-contract info and file
ownerWallet
string
required

The address of the wallet

destinationWallet
string
required

The address of the destination wallet

tokenID
string
required

The ID of your trustable file

Example:

null

type
enum<string>
required
Available options:
rootkey
subType
enum<string>
required
Available options:
sec1

Response

200
application/json
Result of the validation
validation
object