Transfer an NFT
Path Parameters
- walletId string required
Unique wallet identifier
- application/json
Request Body required
- chain string required
Possible values: [
polygon
]Default value:
polygon
- tokenAddress string required
Token smart contract address
- tokenId string required
Unique on chain NFT identifier
- destinationAddress string required
Account address where the NFT will be sent. For example, your Metamask wallet address if you wish to send it to yourself
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- id string
Unique wallet identifier.
- chain string
Possible values: [
polygon
]Default value:
polygon
- tokenAddress string
Token smart contract address
- tokenId string
Unique on chain NFT identifier
- destinationAddress string
Account address where the NFT will be sent. For example, your Metamask wallet address if you wish to send it to yourself
- walletId string
Unique wallet identifier
- transactionHash string
NFT transfer transaction hash which is a unique string of characters that is given to every transaction that is added to the blockchain
- status string
- createdOn date-time
The date and time when the object was created.
{
"id": "string",
"chain": "polygon",
"tokenAddress": "0x0000000000000000000000000000000000000000",
"tokenId": "string",
"destinationAddress": "0x0000000000000000000000000000000000000000",
"walletId": "string",
"transactionHash": "string",
"status": "completed",
"createdOn": "2023-03-02T16:02:09.821Z"
}
Loading...