api
api commands are generic commands for all nexgentecâ„¢ devices that have an API. These commands utilize the generic API protocol, enabling seamless integration and control across supported devices.
api.app.log.level.get
Get the log level for the api service running on the api
Request
Method | Param | Value | Comment | Supported Versions |
---|---|---|---|---|
api.app.log.level.get | >=v1.0.16 |
{"jsonrpc":"2.0","id":1,"method":"api.app.log.level.get"}
Reply
Result | Comment | |
---|---|---|
x | Active log level |
{"jsonrpc":"2.0","id":20,"result":{"level":3}}
api.app.log.level.set
Set the log level
Request
Method | Param | Value | Comment | Supported Versions |
---|---|---|---|---|
api.app.log.level.set | level | 0-7 | Log level to set | >=v1.0.16 |
{"jsonrpc":"2.0","id":1,"method":"api.app.log.level.set","params":{"level":6}
Reply
Result | Comment | |
---|---|---|
null | null means acknowledged, no error |
{"jsonrpc":"2.0","id":1,"result":null}