The following sample will show you how to buy a NFT.
Prerequisites:
Buy a NFT
/* Update the fields with your informations *//* Account Id of the buyer */$fromAccountId =''; /* Account ID of the Seller */$sellerAccountId ='';/* TokenId of the NFT */$tokenId ='';/* Custom uniq ID */$uniqId ='';/* ID of the NFTs to Buy */$nftIds = []; /* number *//* Define a Webhook */$webhook ='';$client->buyNFT([ $fromAccountId, $sellerAccountId, $quantity, $tokenId, $nftIds, $uniqId], $webhook);
Find more details on the webhook implementation here
⭐ Congratulations! You have successfully bought a NFT !