Shows transactions history for the selected order or wallet.
## Request Structure
`JSON object:`
```JSON
{
"method": "srv_xchange",
"subcommand": ["order","history"],
"arguments": {
"net": "network_name",
"order | addr": "order_hash | wallet_addr"
},
"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 | addr`** - hash of the order | address of the wallet
### 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","history"],
"arguments": {
"net": "riemann",
"order": "0x68D7559147BF9D228A68FF53A3F2B4735377834ACF5DE6FC1095D48B1ECBF00D"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"history for order": [
{
"hash": "0x68D7559147BF9D228A68FF53A3F2B4735377834ACF5DE6FC1095D48B1ECBF00D",
"status": "active",
"proposed_coins": "5.0",
"proposed_datoshi": "5000000000000000000",
"ticker": "tKEL",
"buy_token": "CRINGE",
"rate": "2.0",
"net": "riemann",
"owner_addr": "o9z3wUTSTicckJuoz2KebPSeZuMAfFQiPobvhwmy9dzC2RefQmy7EH7a74qZFXZE3g8LFf284mLR152wGPHbAAifMk55f6haWGmPkrW6"
}
]
}
],
"id": 1
}
```