Group Server Status Object

The FTL server web API represents the operating state of the group service as a JSON object.

Example JSON Representation

{
  "groups":[{
      "activation_interval":5.0,
      "members":[{
          "client_id":"11033",
          "member_descriptor":null,
          "member_type":"OBSERVER_MEMBER",
          "ordinal":0
        },
        {
          "client_id":"11037",
          "member_descriptor":null,
          "member_type":"ORDINAL_MEMBER",
          "ordinal":2
        },
        {
          "client_id":"11041",
          "member_descriptor":"{string:my_descriptor_string=\"My descriptor\"}",
          "member_type":"FULL_MEMBER",
          "ordinal":1
        }],
      "name":"myGroup"
    }],
  "server_mode":"Primary",
  "server_state":"RUNNING"
}