v1

latestOpenAPI 3.0.02026-07-243339471.1 MB
Access Points

Get a list of Access Point radios

This API endpoint retrieves a list of radios associated to an access point. Each radio in the returned list includes comprehensive details like MAC address, band, status and its current statistics.

get/network-monitoring/v1/aps/{serial-number}/radios

Path parameters

serial-numberstring const required

The device serial number.

Example:AP00000001

Serial number of an access point device.

Response

List of Radios of an access point, along with their details.

countinteger required

Number of items in the response.

totalinteger

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

Example response

{
  "items": [
    {
      "macAddress": "11:22:33:44:55:66",
      "health": "Poor",
      "status": "UP",
      "band": "2.4 GHz",
      "bandRange": "",
      "channel": "8",
      "bandwidth": "20 MHz",
      "mode": "Client Access",
      "radioNumber": 1,
      "power": 13,
      "siteId": "6658275",
      "channelUtilization": "87",
      "nonWifiInterference": "3",
      "txUtilization": "21",
      "rxUtilization": "41",
      "noiseFloor": "-50",
      "drops": "14.44",
      "retries": "0",
      "channelQuality": "99",
      "channelChangeCount": 9,
      "powerChangeCount": 6,
      "clientCount": 4,
      "id": "AP00000001/radios/1",
      "type": "network-monitoring/access-point-monitoring"
    }
  ],
  "count": 1,
  "total": 1
}