[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-29 UTC."],[[["\u003cp\u003eThis page details the process of deleting a Blockchain Node Engine node, which can be accomplished via the Google Cloud console or through an API call.\u003c/p\u003e\n"],["\u003cp\u003eWhen deleting a node through the console, you must navigate to the Blockchain Node Engine page, select the node, and confirm the deletion by typing the node's name.\u003c/p\u003e\n"],["\u003cp\u003eTo delete a node using the API, send a DELETE request to the \u003ccode\u003eDeleteBlockchainNode\u003c/code\u003e endpoint, providing your project ID, location, and the node's name.\u003c/p\u003e\n"],["\u003cp\u003eDuring the deletion process, the node's status will be shown as "DELETING" when using the ListBlockchainNode command.\u003c/p\u003e\n"]]],[],null,["# Delete a blockchain node\n\nThis page describes how to delete a Blockchain Node Engine node using the\n[console](#using-the-console) or an [API](#using-an-api) call.\n| **Note:** While the blockchain node is being deleted, the response to the [ListBlockchainNode](/blockchain-node-engine/docs/reference/rest/v1/projects.locations.blockchainNodes/list) command continues to display the node, but shows its state as **DELETING**.\n\nUsing the console\n-----------------\n\nTo delete a node using the console:\n\n1. In the Google Cloud console, go to the **Blockchain Node Engine** page.\n\n\n [Go to Blockchain Node Engine](https://console.cloud.google.com/blockchain-node-engine)\n2. The **Nodes** list page is displayed by default.\n3. [](/static/blockchain-node-engine/images/nodes-list.png)\n4. Click\n more_vert **More** \\\u003e\n delete **Delete** next to the\n intended node.\n\n5. Type the node name in the confirmation dialog and then click\n **Delete node**.\n\nUsing an API\n------------\n\nTo delete a blockchain node using\n[DeleteBlockchainNode](/blockchain-node-engine/docs/reference/rest/v1/projects.locations.blockchainNodes/delete),\nsend the following request: \n\n curl -X DELETE \\\n -H \"Authorization: Bearer $(gcloud auth print-access-token)\" \\\n -H \"Content-Type: application/json\" \\\n https://blockchainnodeengine.googleapis.com/v1/projects/\u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e/\\\n locations/\u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e/blockchainNodes/\u003cvar translate=\"no\"\u003eNODE_NAME\u003c/var\u003e\n\nWhere:\n\n- \u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e is your Google Cloud project ID. For example, `my-project-id`.\n- \u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e is the [location](/blockchain-node-engine/docs/terms#location) in which your resources are hosted. For example, `us-central1`.\n- \u003cvar translate=\"no\"\u003eNODE_NAME\u003c/var\u003e is the name of the node you created in [Create a blockchain node](/blockchain-node-engine/docs/create-node). For example, `my-node`.\n\nHere is a sample response to the above command: \n\n {\n \"name\": \"projects/my-project-id/locations/us-central1/operations/\n operation-1669730507366-5ee9c6dc31fc4-ab3b364d-76c83243\",\n \"metadata\": {\n \"@type\": \"type.googleapis.com/google.cloud.blockchainnodeengine.v1.\n OperationMetadata\",\n \"createTime\": \"2022-11-29T14:01:47.448829624Z\",\n \"target\": \"projects/my-project-id/locations/us-central1/blockchainNodes/\n my-node\",\n \"verb\": \"delete\",\n \"requestedCancellation\": false,\n \"apiVersion\": \"v1\"\n },\n \"done\": false\n }"]]