Shows an order dump.
## Request Structure
`JSON object:`
```JSON
{
"method": "net_srv",
"subcommand": ["order","dump"],
"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","dump"],
"arguments": {
"net": "riemann",
"hash": "0x546C2DC5AE8D0C5E3E267512A0D1367B4E1667F5C00FC95AC1DE318E79AC2E8E"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"order": "0x546C2DC5AE8D0C5E3E267512A0D1367B4E1667F5C00FC95AC1DE318E79AC2E8E",
"version": "3",
"direction": "SERV_DIR_SELL",
"created": "Wed, 07 May 2025 04:27:27 +0000",
"timestamp": "1746592047",
"srv_uid": "0x0000000000000001",
"price coins": "0.000007",
"price datoshi": "7000000000000",
"price token": "tKEL",
"units": "500",
"price unit": "SECOND",
"node_addr": "6074::5C74::C320::A0F5",
"node_location": "None - None",
"ext_size": "0",
"pkey": "0xD719E3DE39D92998B7CFE7092AA16B53B619B6B093DA9D36B676402CE7AF24"
}
],
"id": 1
}
```