server

server commands are generic commands for all Nexgentecâ„¢ devices that support a JSON-RPC 2.0 API. These commands provide a standard JSON-RPC method to retrieve the list of supported methods available on the device.

rpc.server.info.get (serverInfo)

Get all supported RCP methods

Request

Method Param Value Comment Supported Versions
rpc.serverInfo >1.0.1
rpc.server.info.get >=1.0.14
{"jsonrpc":"2.0","id":1,"method":"rpc.serverInfo"}

{"jsonrpc":"2.0","id":1,"method":"rpc.server.info.get"}

Reply

Result Key Comment
methods All supported methods that can be used by a 3rd party control system
counters Server counters
startTime Server start time
{
  "result": {
    "startTime": "2025-04-01T12:45:20.908934559Z",
    "metrics": {
      "bytes_written": 364,
      "rpc_requests": 3,
      "bytes_read": 165,
      "notifications_pushed": 0,
      "rpc_errors": 1,
      "servers_active": 2,
      "calls_pushed": 0
    },
    "methods": [
      "api.app.log.level.get","api.app.log.level.set","api.app.version.get","api.appLogLevelGet","api.appLogLevelSet","api.appVersionGet","bluetooth.acl.add","bluetooth.acl.clear","bluetooth.acl.config.get","bluetooth.acl.config.set","bluetooth.acl.config.subscribe","bluetooth.acl.config.unsubscribe","bluetooth.acl.get","bluetooth.acl.remove","bluetooth.acl.subscribe","bluetooth.acl.unsubscribe","bluetooth.config.get","bluetooth.config.set","bluetooth.config.subscribe","bluetooth.config.unsubscribe","bluetooth.pairedlist.clear","bluetooth.pairedlist.get","bluetooth.pairedlist.remove","bluetooth.pairedlist.subscribe","bluetooth.pairedlist.unsubscribe","bluetooth.peer.get","bluetooth.peer.release","bluetooth.peer.set","bluetooth.peer.subscribe","bluetooth.peer.transport","bluetooth.peer.unsubscribe","bluetooth.peers.release","bluetooth.pl.clear","bluetooth.pl.get","bluetooth.pl.remove","fb12.app.log.level.get","fb12.app.log.level.set","fb12.app.version.get","rpc.server.info.get","rpc.serverInfo"]
  },
  "id": 2,
  "jsonrpc": "2.0"
}