Finds [[Decree|decree]] by hash and shows it's status (`applied` or `not`). ## Request Structure `JSON object:` ```JSON { "method": "decree", "subcommand": ["find"], "arguments": { "net": "network_name", "hash": "decree_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]] **`hash`** - hash of the decree ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d ' { "method": "decree", "subcommand": ["find"], "arguments": { "net": "riemann", "hash": "0x3859BAADFF8AB6B528BD3E7E6D0BA8C090B1044172166E5F979617736C87B79B" }, "id": "1" }' ``` `Response:` ```json { "type": 0, "result": "Specified decree is applied in decrees hash-table", "id": 1 } ```