Deletes the node from the node list using address.
> [!HINT] Note
> Only the node which has added a target node initially can delete it.
## Request Structure
`JSON object:`
```JSON
{
"method": "node",
"subcommand": ["del"],
"arguments": {
"net": "network_name",
"addr": "node_address"
},
"id": "1"
}
```
`Parameters:`
**`net (network_name)`** - name of the Cellframe Network. The list of networks can be found in the `<Config_dir> \ etc \ network` folder or received using - [[Node Command - NET LIST]]
**`addr`** - node address (for example, `E0A6::4F46::5A58::53A0`)
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '
{
"method": "node",
"subcommand": ["del"],
"arguments": {
"net": "railgun",
"addr": "AAB9::4DAC::DA36::C421"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 0,
"result": "Successfully deleted node AAB9::4DAC::DA36::C421",
"id": 1
}
```