POST api/v1/measurement/nodesInGroup?siteService={siteService}

Retrieves a list of Node names associated with the specified group Node.

CygNet Access Requirements

    CygNet ACS security: BRDGAPI ACCESS 1

    CygNet Bridge API license type: Base

Request Information

URI Parameters

NameDescriptionTypeAdditional information
siteService

CygNet site and service (Site.Service) of the FMS Service

string

Required

Body Parameters

Request object containing the data of group

NameDescriptionTypeAdditional information
groupName

A single group Node name for which to retrieve a list of member Node names.

string

Required

recursive

If this parameter is set to True, the method will recursively search and return the children of any group Nodes in the hierarchy. If set to False, the method will only return the immediate children of the specified group Node.

boolean

Required

Request Formats

application/json, text/json

Sample:
{
  "groupName": "General_Group",
  "recursive": true
}

Response Information

Resource Description

Returns the specified general group from the connected FMS service.

NameDescriptionTypeAdditional information
nodes

A list a Nodes

Collection of string

None

Response Formats

application/json, text/json

Sample:
{
  "nodes": [
    "New_Device",
    "New_Device1"
  ]
}