# NFTokenBurn [[Source]](https://github.com/XRPLF/rippled/blob/master/src/xrpld/app/tx/detail/NFTokenBurn.cpp) Burn (destroy) a [non-fungible token (NFT)](/docs/concepts/tokens/nfts). The NFT's current holder can always burn it, and if the token's **Burnable** flag is enabled, the issuer and their authorized minter (if they have one) can also burn the NFT. If the transaction succeeds, it removes the corresponding [NFToken](/docs/references/protocol/data-types/nftoken) object from the [NFTokenPage entry](/docs/references/protocol/ledger-data/ledger-entry-types/nftokenpage) that was storing it. This can cause the pages of an NFT directory to be consolidated. NonFungibleTokensV1_1 ## Example JSON ```json { "TransactionType": "NFTokenBurn", "Account": "rNCFjv8Ek5oDrNiMJ3pw6eLLFtMjZLJnf2", "Owner": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B", "Fee": "10", "NFTokenID": "000B013A95F14B0044F78A264E41713C64B5F89242540EE208C3098E00000D65" } ``` ## Fields In addition to the [common fields](/docs/references/protocol/transactions/common-fields), transactions use the following fields: | Field | JSON Type | [Internal Type](/docs/references/protocol/binary-format) | Description | | --- | --- | --- | --- | | `NFTokenID` | String | UInt256 | The `NFToken` to be removed by this transaction. | | `Owner` | String | AccountID | *(Optional)* The owner of the `NFToken` to burn. Only used if that owner is different than the account sending this transaction. The issuer or authorized minter can use this field to burn NFTs that have the `lsfBurnable` flag enabled. | ## Error Cases Besides errors that can occur for all transactions, transactions can result in the following [transaction result codes](/docs/references/protocol/transactions/transaction-results): | Error Code | Description | | --- | --- | | `temDISABLED` | The [NonFungibleTokensV1 amendment](/resources/known-amendments#nonfungibletokensv1) is not enabled. | | `tecNO_ENTRY` | The specified `TokenID` was not found. | | `tecNO_PERMISSION` | The account does not have permission to burn the token. |