Deletes a service order.
> [!HINT] Note
> Order can be deleted only by a person who created it.
## Request Structure
`JSON object:`
```JSON
{
"method": "net_srv",
"subcommand": ["order","delete"],
"arguments": {
"net": "network_name",
"hash": "order_hash"
},
"id": "1"
}
```
`Parameters:`
**`net`** - 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]]
**`hash`** - hash of the order
### Curl Example
`Request:`
```powershell
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "net_srv",
"subcommand": ["order","delete"],
"arguments": {
"net": "riemann",
"hash": "0x546C2DC5AE8D0C5E3E267512A0D1367B4E1667F5C00FC95AC1DE318E79AC2E8E"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"order_hash": "0x546C2DC5AE8D0C5E3E267512A0D1367B4E1667F5C00FC95AC1DE318E79AC2E8E"
}
],
"id": 1
}
```