GET
/
erc721
/
{id}
/
{tokenId}
/
transfer
curl --request GET \
  --url https://lab.trustos.telefonicatech.com/track/v2/erc721/{id}/{tokenId}/transfer \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "message": "Token transferred successfully",
  "data": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Token address or symbol.

Example:

"0xabcdef"

tokenId
string
required

Id of the token to be transferred.

Example:

"7"

Query Parameters

networkId
number
required

Network identifier where the NFT collection contract was deployed.

Example:

10004

to
string
required

Address which will receive the token.

Example:

"0xabcdef"

Response

200
application/json

Successful token transfer.

The response is of type object.