getSiteCurrentRrmConsiderationsForAnApOnASpecificBand

GET https://{{host}}/api/v1/sites/:site_id/rrm/current/devices/:device_id/band/:band

Request Parameter

ParameterTypeDescription
bandstring24 / 5 / 6

#### Response Parameter Parameter|Type|Description :-------------: |:-------------: |:-------------: channel|int|channel noise|float|noise floor nonwifi|float|non-wifi RF utilization wifi|float|WIFI RF utilization rssi|int|the avg RSSI heard from neighbor APs (that belongs to the same site) otherrssi|int|the avg RSSI heard from other APs (that does NOT belongs to the same site) maxotherssid|string|SSID from other AP that we heard from with the max RSSI utilscore|float|utilization score, 0-1, lower means less utilization (cleaner RF) insitechannel_weight|float|channel weight score, 0-1, lower means less utilization (cleaner RF)

RESPONSES

status: OK

"{\n    \"results\": [\n        {\n            \"channel\": 36,\n            \"noise\": -78,\n            \"non_wifi\": 0.08,\n            \"wifi\": 0.13\n\n            // omitted if there's no near-by APs in the same site\n            \"rssi\": -48,\n\n            // omitted if there's no near-by APs\n            \"other_rssi\": -66,\n            \"other_ssid\": \"Rivendell5G\",\n\n            \"util_score\": 0.1,           // total utilization (in a score format that's currently relevant / comparable against other channels) \n            \"util_score_other\": 0.05,    // utilizatyion contributed by other SSIDs served\n            \"util_score_non_wifi\": 0.01, // utilization contributed by non-wifi\n        }\n    ]\n}"