Displays information about the parameters of the [[Decree|decrees]] in the network. ## Request Structure `JSON object:` ```JSON { "method": "decree", "subcommand": ["info"], "arguments": { "net": "network_name" }, "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]] ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d ' { "method": "decree", "subcommand": ["info"], "arguments": { "net": "riemann" }, "id": "1" }' ``` `Response:` ```json { "type": 0, "result": "Decree info:\n\tOwners: 3\n\t=====================================================================\n\t1) 0x847991D080A242F481761321549E356517CB9024C1E204326ACB85064ED4FE29\n\t2) 0xA9279C1CBAC80812F5E99C70B5A55E390B4334E1ACDC994BA4DC365C9F5886DF\n\t3) 0x57AF31F04D48F44682FEEF66D92578CA98CA9E682E088599727CD16EC4AF9991\n\t=====================================================================\n\tMin owners for apply decree: 1\n", "id": 1 } ```