v1
latestOpenAPI 3.0.02026-07-243339471.1 MBGet channel utilization information for a radio
The API retrieves radio channel utilization data for a specified radio of an access point, including percentages for Transmitting (tx), Receiving (rx), and Non-Wi-Fi interference. It provides insights into how effectively radio channels are being utilized. The data will be fetched based on the timestamp range provided in the filter. If no timestamp range is specified in the filter, data for the last 3 hours will be returned by default.
Path parameters
The device serial number.
Serial number of an access point device.
radio number within an access point.
Query parameters
OData Version 4.0 filter string (limited functionality). Supports only 'and' conjunction ('or' and 'not' are NOT supported). Supported fields, operators and value format are in the below given table.
| Field | Operators | Format |
|---|---|---|
| timestamp | gt and lt | Date-time (RFC 3339 timestamp in UTC+0) string |
The operators are implemented as follows:
-
gt: Used to indicate the start of the timestamp range.
-
lt: Used to indicate the end of the timestamp range.
Id of a site where devices are associated.
ID of the Site for which access point related information is requested
Name of the Site in which the device is present.
Name of the Site for which access point related information is requested
Response
The response object contains data on radio channel utilization, including percentages for Transmitting (tx), Receiving (rx), and Non-Wi-Fi interference, providing insights into how effectively radio channels are being utilized.
Example response
{
"metric": "channel_utilization",
"graph": {
"keys": [
"tx",
"rx",
"non_wifi_interference"
],
"samples": [
{
"data": [
4,
35,
40
],
"timestamp": "2022-07-30T20:00:00Z"
}
],
"samplingIntervalInMinutes": 5
},
"id": "AP00000001/radios/0",
"type": "network-monitoring/access-point-monitoring"
}