Invalidates (closes) opened or partially filled order.
## Request Structure
`JSON object:`
```JSON
{
"method": "srv_xchange",
"subcommand": ["order","remove"],
"arguments": {
"net": "network_name",
"order": "order_hash",
"w": "wallet_name",
"fee": "fee_value"
},
"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]]
**`order`** - order hash
**`w`** - name of the wallet where funds will be returned
**`fee`** - comission in datoshi
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "srv_xchange",
"subcommand": ["order","remove"],
"arguments": {
"net": "riemann",
"order": "0x68D7559147BF9D228A68FF53A3F2B4735377834ACF5DE6FC1095D48B1ECBF00D",
"w": "wallet1",
"fee": "0.5e+18"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"status": "Order successfully removed",
"Created inactivate tx with hash": "0x16D7EACF319EF2BCD618A5B3420CED1A2255BE8FD90609CE4DB3B46353098ED1"
}
],
"id": 1
}
```