Shows service usage statistics. ## Request Structure `JSON object:` ```JSON { "method": "net_srv", "subcommand": ["order","delete"], "id": "1" } ``` `Parameters:` none ### Curl Example `Request:` ```powershell curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "net_srv", "subcommand": ["report"], "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "report": "Service report:\nSRV UID: 0x0000000000000001\nClient pkey hash: 0xC5A9803A213BA6017C150E026F8241A84BF67B80114AE99429B2A358AC211B2D\n \tpayed:\n\t\tusing time:\t\t909\n\t\tbytes sent:\t\t3500544\n\t\tbytes received:\t\t9820555\n\t\tunits used:\t\t0\n\t\tdatoshi value:\t\t5049999\n\tgrace:\n\t\tusing time:\t\t0\n\t\tbytes sent:\t\t0\n\t\tbytes received:\t\t0\n\t\tunits used:\t\t0\n\t\tdatoshi value:\t\t0\n\tfree:\n\t\tusing time:\t\t0\n\t\tbytes sent:\t\t0\n\t\tbytes received:\t\t0\n\t\tunits used:\t\t0\n" } ], "id": 1 } ```