Withdraw a NFT from Sale
The following sample will show you how to withdraw a NFT for sale and transfer back the NFT to the seller account.
Prerequisites:
Sell a NFTStep 1: Withdrawing a NFT from sale
/* TokenId of the NFT */
$tokenId = '';
/* ID of the NFTs you want to delete */
$nftIds = '';
/* Custom uniq ID */
$uniqId = '';
/* Define a Webhook */
$webhook = '';
/* Withdraw a NFT from Sale */
$qrCode = $client->deleteNFTFromSale([$tokenId, $uniqId], $webhook);
Find more details on the webhook implementation here
⭐ Congratulations! You have successfully withdraw your NFT !
Last updated