v1

latestOpenAPI 3.0.02026-07-243339471.1 MB
Gateways

List Gateway Cluster members

Retrieves a list of gateways present in a cluster with comprehensive details.

get/network-monitoring/v1/clusters/{cluster-name}/members

Path parameters

cluster-namestring const required

The name of the cluster to which the device belongs. If the device is not part of any cluster then the cluster name will be null.

Example:cluster 1

The name of the cluster formed by the gateway.

Query parameters

filterstring

OData Version 4.0 filter string (limited functionality). Supports only 'and' conjunction ('or' and 'not' are NOT supported). Supported fields and operators are in the below given table.

FieldOperators
statuseq and in
roleeq and in
modeleq and in
softwareVersioneq and in
firmwareVersioneq and in
siteNameeq and in

The operators are implemented as follows:

  • eq: Only values exactly matching the given value are returned.

  • in: Only values present in the given list are returned.

sortstring
Example:siteName desc

A comma-separated list of sort expressions. Each sort expression is a property name optionally followed by a direction indicator asc (ascending) or desc (descending).

The first sort expression in the list defines the primary sort order, the second defines the secondary sort order, and so on. If a direction indicator is omitted the default direction is ascending.

Supported fields are status, role, model, ipv4, softwareVersion, firmwareVersion, siteName and macAddress.

limitinteger
Example:20

Denotes the maximum number of gateways returned in the response.

nextstring

Specifies the pagination cursor for the next page of resources.

Example:1

Specifies the pagination cursor for the next page of resources.

Minimum value: 1

Response

Object containing information about the gateways present in the cluster.

countinteger required

The number of items in the response.

totalinteger

Specifies the total number of items available for a given filter query.

nextstring int32 required

Indicates the next page number, or null if there are no further pages.

Example response

{
  "items": [
    {
      "clusterName": "Demo GW Cluster",
      "ipv4": "167.34.21.6",
      "ipv6": "2001:0db8:85a3:0000:0000:8a2e:0370:7334",
      "lastSeenAt": "2024-03-12T07:20:50.52Z",
      "macAddress": "28:de:65:f1:c1:c0",
      "model": "A9240",
      "deviceName": "Gateway-1",
      "partNumber": "R7H95A",
      "role": "Isoleader",
      "serialNumber": "CZ0001156",
      "siteId": "12345",
      "siteName": "prestige-zackaria",
      "softwareVersion": "10.7.0.0_90051",
      "firmwareVersion": "10.7.0.0_90051",
      "status": "OFFLINE",
      "id": "CZ0001156",
      "type": "network-monitoring/gateway-monitoring"
    }
  ],
  "count": 1,
  "total": 1,
  "next": null
}