Represents a radio interface of an wireless access point.
Resource URL
/webacs/api/v1/data/RadiosSince : 1.2
Response Parameters
| Type | Attribute Name | Description |
|---|---|---|
|
RadioAdminStatusEnum |
adminStatus |
Administrative status of the radio interface Allowed values: |
|
String |
apIpAddress |
IP address of the access point |
|
String |
apName |
Name of the access point |
|
String |
apType |
Type of access point (CAPWAP or Autonomous) |
|
String |
baseRadioMac |
Base radio MAC address |
|
ChannelNumberEnum |
channelNumber |
current operational channel number Allowed values: |
|
String |
clientCount |
client count connected to the radio interafce |
|
String |
controllerIpAddress |
Resgistered controller IP address for CAPWAP AP only |
|
String |
ethernetMac |
MAC address of the ethernet interface on the AP |
|
RadioOperStatusEnum |
operStatus |
operational status of the radio interface Allowed values: |
|
int |
powerLevel |
power level of the radio |
|
String |
radioType |
radio type (802.11a/b/g/n) |
Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.
Sample XML Payload
https://192.168.116.207/webacs/api/v1/data/Radios/42
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<queryResponse rootUrl="/webacs/data" requestUrl="https://192.168.116.207/webacs/api/v1/data/Radios/42" responseType="getEntity">
<entity url="/webacs/data/className/15" type="className" dtoType="radiosDTO_$$_javassist_5971">
<radiosDTO id="15" displayName="String value">
<adminStatus>UNKNOWN</adminStatus>
<apIpAddress>String value</apIpAddress>
<apName>String value</apName>
<apType>String value</apType>
<baseRadioMac>String value</baseRadioMac>
<channelNumber>UNKNOWN</channelNumber>
<clientCount>String value</clientCount>
<controllerIpAddress>String value</controllerIpAddress>
<ethernetMac>String value</ethernetMac>
<operStatus>DOWN</operStatus>
<powerLevel>1</powerLevel>
<radioType>String value</radioType>
</radiosDTO>
</entity>
</queryResponse>
Sample JSON Payload
https://192.168.116.207/webacs/api/v1/data/Radios/42.json
{
"queryResponse" : {
"@rootUrl" : "\/webacs\/data",
"@requestUrl" : "https : \/\/192.168.116.207\/webacs\/api\/v1\/data\/Radios\/42",
"@responseType" : "getEntity",
"entity" : {
"@url" : "\/webacs\/data\/className\/15",
"@type" : "className",
"@dtoType" : "radiosDTO_$$_javassist_5971",
"radiosDTO" : {
"@id" : "15",
"@displayName" : "String value",
"adminStatus" : "UNKNOWN",
"apIpAddress" : "String value",
"apName" : "String value",
"apType" : "String value",
"baseRadioMac" : "String value",
"channelNumber" : "UNKNOWN",
"clientCount" : "String value",
"controllerIpAddress" : "String value",
"ethernetMac" : "String value",
"operStatus" : "DOWN",
"powerLevel" : 1,
"radioType" : "String value"
}
}
}
}