This page describes how to delete a Blockchain Node Engine node using the console or an API call.
Using the console
To delete a node using the console:
- In the Google Cloud console, go to the Blockchain Node Engine page. 
- Click More > Delete next to the intended node. 
- Type the node name in the confirmation dialog and then click Delete node. 
The Nodes list page is displayed by default.
Using an API
To delete a blockchain node using DeleteBlockchainNode, send the following request:
curl -X DELETE \
  -H "Authorization: Bearer $(gcloud auth print-access-token)" \
  -H "Content-Type: application/json" \
https://blockchainnodeengine.googleapis.com/v1/projects/PROJECT_ID/\
locations/LOCATION/blockchainNodes/NODE_NAME
Where:
- PROJECT_ID is your Google Cloud project ID. For
example, my-project-id.
- LOCATION is the
  location in which
  your resources are hosted. For example, us-central1.
- NODE_NAME is the name of the node you created in
Create a blockchain node. For example,
my-node.
Here is a sample response to the above command:
{
  "name": "projects/my-project-id/locations/us-central1/operations/
    operation-1669730507366-5ee9c6dc31fc4-ab3b364d-76c83243",
  "metadata": {
    "@type": "type.googleapis.com/google.cloud.blockchainnodeengine.v1.
      OperationMetadata",
    "createTime": "2022-11-29T14:01:47.448829624Z",
    "target": "projects/my-project-id/locations/us-central1/blockchainNodes/
      my-node",
    "verb": "delete",
    "requestedCancellation": false,
    "apiVersion": "v1"
  },
  "done": false
}
