Removes specified order. ## Request Structure `JSON object:` ```JSON { "method": "srv_stake", "subcommand": ["order","remove"], "arguments": { "net": "network_name", "order": "order_hash" }, "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`** - hash of the order ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "srv_stake", "subcommand": ["order","remove"], "arguments": { "net": "railgun", "order": "0x3DB98A6743F882C9444B90863F9C571B4162DE49FF316166D95776B274B3532C" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "status": "success" } ], "id": 1 }