Server Data Type

A server in the system.

Properties
Name Type Description
guid string GUID of the server.
hostname string Hostname of server.
type string Type of server. One of:
  • UEM (BlackBerry Unified Endpoint Management)
  • BCN (BlackBerry Connectivity Node)
version string Version of server.
serverGroupName string BlackBerry Connectivity Node server group, if applicable and set.
services array of Server service List of services installed on the server.

Example

{
  "guid" : "2ab7d0e2-3f24-48c6-961a-949794f4b554",
  "hostname" : "server01",
  "type" : "UEM",
  "version" : "12.7.0",
  "services" : [ {
    "name" : "BlackBerry UEM - UEM Core",
    "type" : "CORE",
    "status" : "RUNNING",
    "version" : "5.33.36",
    "connections" : [ {
      "type" : "DB",
      "status" : "CONNECTED"
    }, {
      "type" : "...",
      "status" : "..."
    } ]
  }, {
    "name" : "...",
    "type" : "...",
    "status" : "...",
    "version" : "...",
    "connections" : [ {
      "type" : "...",
      "status" : "..."
    }, {
      "type" : "...",
      "status" : "..."
    } ]
  } ]
}