A transaction called by the token owner to delete allowances for NFTs only. In order to delete an existing hbar or fungible token allowance the AccountAllowanceApproveTransaction API should be used with an amount of 0.
The total number of NFT serial number deletions contained within the transaction body cannot exceed 20.
Transaction Fees
Please see the transaction and query fees table for base transaction fee
Removes the NFT allowance from the spender account.
//Create the transactionAccountAllowanceAdjustTransaction transaction =newAccountAllowanceAdjustTransaction().deleteAllTokenNftAllowances(nftId , ownerAccountId);//Sign the transaction with the owner account key TransactionResponse txResponse =transaction.freezeWith(client).sign(ownerAccountKey).execute(client);//Request the receipt of the transactionTransactionReceipt receipt =txResponse.getReceipt(client);//Get the transaction consensus statusStatus transactionStatus =receipt.status;System.out.println("The transaction consensus status is "+transactionStatus);//v2.12.0+
//Create the transactionconsttransaction=newAccountAllowanceDeleteTransaction().deleteAllTokenNftAllowances(nftId , ownerAccountId);//Sign the transaction with the owner account keyconstsignTx=awaittransaction.sign(ownerAccountKey);//Sign the transaction with the client operator private key and submit to a Hedera networkconsttxResponse=awaitsignTx.execute(client);//Request the receipt of the transactionconstreceipt=awaittxResponse.getReceipt(client);//Get the transaction consensus statusconsttransactionStatus=receipt.status;console.log("The transaction consensus status is "+transactionStatus.toString());//v2.13.0+
//Create the transactiontransaction := hedera.NewAccountAllowanceDeleteTransaction().DeleteAllTokenNftAllowances(nftId , ownerAccountId)if err !=nil {panic(err)}//Sign the transaction with the owner account private key and submit to the network txResponse, err := transaction.Sign(ownerAccountKey).Execute(client)//Request the receipt of the transactionreceipt, err := txResponse.GetReceipt(client)if err !=nil {panic(err)}//Get the transaction consensus statustransactionStatus := receipt.Statusprintln("The transaction consensus status is ", transactionStatus)//v2.13.1+