Download OpenAPI specification:Download
The ExtremeCloud IQ Controller REST API Gateway provides a single entry point between the external requesting clients and the multiple internal APIs that help install, access, manage, and extend applications that are supported by the ExtremeCloud IQ Controller platform. The Gateway API is based on RESTful principles and uses standard HTTP methods for requests and responses. API request and response bodies are formatted in JavaScript Object Notation (JSON).
You can use any language or library that can submit REST API requests and process JSON to query the Gateway API . Examples of languages and libraries that can build REST clients include:
You can also use tools like Postman, an easy-to-use Chrome extension for making HTTP requests.
Note: To submit API calls, your RESTful API consuming program needs to have logged in using credentials granting at least read permissions. Any administrator account can be used with the REST API but only user accounts with Full admin credentials can make configuration changes through the REST API.
The ExtremeCloud IQ Controller REST API Gateway supports the HTTP bearer authentication scheme in conjuntion with the OAuth 2.0 protocol to provide secure authorized access to the API. OAuth is an authorization framework that enables web, mobile, and desktop applications to access protected resources. Bearer authentication (aka token authentication) involves security tokens called bearer tokens.
To begin, pass your client login credentials within a POST request to the management/v1/oauth2/token endpoint with the following JSON data and structure:
{
"grantType": "password",
"userId": "adminUserId",
"password": "adminPassword",
"scope": "..."
}
In exchange for these credentials, the ExtremeCloud IQ Controller authorization server issues tokens called bearer tokens that you need to include in the Authorization header when making subsequent REST API calls. Below is a sample response to the token request:
{
"access_token": "f06f6f285e364e59fd317bd74da9e837",
"token_type": "Bearer",
"expires_in": 7200,
"idle_timeout": 604800,
"refresh_token": "3e33d8f724e69024811f1cf5869dbaf7",
"adminRole": "FULL"
}
Note: Access tokens have a finite lifetime. The expires_in field in the response indicates the lifetime, in seconds, of the access token. For example, a value of 7200 indicates that the access token
expires in two hours from the time the response was generated. The API endpoint issues a HTTP 401 Unauthorized status code when it detects an expired token.
To construct a REST API request, combine the following components:
| Component | Description |
|---|---|
| The HTTP method |
|
| The base URL of the API | https://{IP_Address}:5825 where {IP_Address} is the IP address of your ExtremeCloud IQ Controller server instance. |
| The URI to the resource | The resource to create, update, query, or delete. For example, /management/v1/accesscontrol. |
| Path parameters | These variables are part of the full URL path and are used to point to a specific resource within a collection. For example, /v1/controllers/{sn}, where {sn} is the path parameter and is substituted with an actual value when making the API call. |
| Query string parameters | For most REST GET calls, you can specify one or more optional query parameters on the request URI to filter, limit the size of, and sort the data in an API response. Query string parameters appear after a question mark (?) in the endpoint. Each parameter is listed one right after the other with an ampersand (&) separating them. The order of the query string parameters does not matter. |
| HTTP request headers | The following HTTP headers are supported:
|
| JSON request body | Required for most POST and PUT requests. |
When you POST or PUT data to the REST API server, set the Content-Type header to application/json. It can also be useful to set the following request headers:
accept: application/jsonaccept-encoding: gzip,deflate,braccept-language: en-US,en;q=0.8,und;q=0.6The ExtremeCloud IQ Controller REST API Gateway returns standard HTTP response codes in addition to JSON-based error messages in the response body to help you identify the source of a problem:
| HTTP Code | Description |
|---|---|
| 200 OK | The request was successful |
| 201 Created | The resource was created successfully |
| 204 No Content | Success with no response body |
| 400 Bad Request | The operation failed because the request is syntactically incorrect or violated schema |
| 401 Unauthorized | The authentication credentials are invalid or the user is not authorized to use the API |
| 404 Not Found | The server did not find the specified resource that matches the request URL |
| 405 Method Not Allowed | The API does not support the requested HTTP method |
The ExtremeCloud IQ Controller API follows the semantic versioning specification (Major.Minor.Patch). The Major version will be updated whenever we introduce breaking changes. The Minor and Patch versions will be incremented when we add functionality and backward-compatible updates.
Returns a list of access control information.
| apserialnum | string The AP serial number that is used to find the site. Returns the ACL list for the site. If a parameter is not provided, the global list is returned. |
{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "macMode": 1,
- "macList": [
- "24:A0:74:53:90:EF"
]
}Update an existing access control list of MAC addresses for a customer.
| apserialnum | string The AP serial number that is used to find the site. Returns the ACL list for the site. If a parameter is not provided, the global list is returned. |
AccessControlMacList instance with parameters to be configured
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| macMode required | number Deprecated A flag to indicate the access list mode. This attribute cannot be null and must be an integer value. Valid values are 1 - Deny List or 2- Allow List. |
| mode | string (AclMode) Enum: "Allow" "Deny" Allow: Allow ACL list Deny: Deny ACL list |
| macList required | Array of strings List of deny/allow listed MAC addresses. If in Allow List mode, only devices on the list are allowed on the network. If in Deny List mode, devices on the list are not allowed on network. Whenever a change between allow/deny happens this list is emptied. |
{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "macMode": 1,
- "macList": [
- "24:A0:74:53:90:EF"
]
}{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "macMode": 1,
- "macList": [
- "24:A0:74:53:90:EF"
]
}Create an access control list of MAC addresses for a customer.
AccessControlMacList instance with parameters to be configured
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| macMode required | number Deprecated A flag to indicate the access list mode. This attribute cannot be null and must be an integer value. Valid values are 1 - Deny List or 2- Allow List. |
| mode | string (AclMode) Enum: "Allow" "Deny" Allow: Allow ACL list Deny: Deny ACL list |
| macList required | Array of strings List of deny/allow listed MAC addresses. If in Allow List mode, only devices on the list are allowed on the network. If in Deny List mode, devices on the list are not allowed on network. Whenever a change between allow/deny happens this list is emptied. |
{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "macMode": 1,
- "macList": [
- "24:A0:74:53:90:EF"
]
}{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "macMode": 1,
- "macList": [
- "24:A0:74:53:90:EF"
]
}Deletes an access control MAC list for a customer.
AccessControlMacList instance with parameters to be configured
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| macMode required | number Deprecated A flag to indicate the access list mode. This attribute cannot be null and must be an integer value. Valid values are 1 - Deny List or 2- Allow List. |
| mode | string (AclMode) Enum: "Allow" "Deny" Allow: Allow ACL list Deny: Deny ACL list |
| macList required | Array of strings List of deny/allow listed MAC addresses. If in Allow List mode, only devices on the list are allowed on the network. If in Deny List mode, devices on the list are not allowed on network. Whenever a change between allow/deny happens this list is emptied. |
{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "macMode": 1,
- "macList": [
- "24:A0:74:53:90:EF"
]
}{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "macMode": 1,
- "macList": [
- "24:A0:74:53:90:EF"
]
}| ip required | string <ipv4> IP address of NSight server |
| https required | boolean Indicates if HTTPS should be used to communicate to the NSight server. |
{- "ip": "192.168.3.10",
- "https": true
}{- "ip": "192.168.3.10",
- "https": true
}Get the list of all access points for a customer.
| brief | boolean Default: true If present and true, response includes AP basic ("brief") configuration and operational information. |
| inventory | boolean Default: false If present and true, response includes AP inventory information. It can be combined with the "brief" parameter. |
| country | string (Country) Enum: "AFGHANISTAN" "ALBANIA" "ALGERIA" "AMERICAN_SAMOA" "ANDORRA" "ANGOLA" "ANGUILLA" "ANTARCTICA" "ANTIGUA_BARBUDA" "ARGENTINA" "ARMENIA" "ARUBA" "AUSTRALIA" "AUSTRIA" "AZERBAIJAN" "BAHAMAS" "BAHRAIN" "BANGLADESH" "BARBADOS" "BELARUS" "BELGIUM" "BELIZE" "BENIN" "BERMUDA" "BHUTAN" "BOLIVIA" "BONAIRE_SINT_EUSTATIUS_AND_SABA" "BOSNIA_HERZEGOVINA" "BOTSWANA" "BOUVET_ISLAND" "BRAZIL" "BRITISH_INDIAN_OCEAN_TERRITORY" "BRUNEI_DARUSSALAM" "BULGARIA" "BURKINA_FASO" "BURUNDI" "CAMBODIA" "CAMEROON" "CANADA" "CAPE_VERDE" "CAYMAN_ISLANDS" "CENTRAL_AFRICAN_REPUBLIC" "CHAD" "CHILE" "CHINA" "CHRISTMAS_ISLAND" "COCOS_KEELING_ISLANDS" "COLOMBIA" "COMOROS" "CONGO" "CONGO_THE_DRC" "COOK_ISLANDS" "COSTA_RICA" "IVORY_COAST" "CROATIA" "CUBA" "CURACAO" "CYPRUS" "CZECH" "DENMARK" "DJIBOUTI" "DOMINICA" "DOMINICAN" "EAST_TIMOR" "ECUADOR" "EGYPT" "EL_SALVADOR" "EQUATORIAL_GUINEA" "ERITREA" "ESTONIA" "ETHIOPIA" "FALKLAND_ISLANDS_MALVINAS" "FAEROE_ISLANDS" "FIJI" "FINLAND" "FRANCE" "FRANCE_METROPOLITAN" "FRENCH_GUIANA" "FRENCH_POLYNESIA" "FRENCH_SOUTHERN_TERRITORIES" "GABON" "GAMBIA" "GEORGIA" "GERMANY" "GHANA" "GIBRALTAR" "GREECE" "GREENLAND" "GRENADA" "GUADELOUPE" "GUAM" "GUATEMALA" "GUINEA" "GUINEA_BISSAU" "GUYANA" "HAITI" "HEARD_AND_MC_DONALD_ISLANDS" "VATICAN" "HONDURAS" "HONG_KONG" "HUNGARY" "ICELAND" "INDIA" "INDONESIA" "IRAN" "IRAQ" "IRELAND" "ISLE_OF_MAN" "ISRAEL" "ITALY" "JAMAICA" "JAPAN" "JORDAN" "KAZAKHSTAN" "KENYA" "KIRIBATI" "KOREA_NORTH" "KOREA" "KOSOVO" "KUWAIT" "KYRGYZSTAN" "LAOS" "LATVIA" "LEBANON" "LESOTHO" "LIBERIA" "LIBYA" "LIECHTENSTEIN" "LITHUANIA" "LUXEMBOURG" "MACAU" "MACAULL" "MACEDONIA" "MADAGASCAR" "MALAWI" "MALAYSIA" "MALDIVES" "MALI" "MALTA" "MARSHALL_ISLANDS" "MARTINIQUE" "MAURITANIA" "MAURITIUS" "MAYOTTE" "MEXICO" "MICRONESIA_FEDERATED_STATES_OF" "MOLDOVA_REPUBLIC_OF" "MONACO" "MONGOLIA" "MONTENEGRO" "MONTSERRAT" "MOROCCO" "MOZAMIBIQUE" "MYANMAR_BURMA" "NAMIBIA" "NAURU" "NEPAL" "NETHERLANDS" "NETHERLANDS_ANTILLES" "NEW_CALEDONIA" "NEW_ZEALAND" "NICARAGUA" "NIGER" "NIGERIA" "NIUE" "NORFOLK_ISLAND" "NORTHERN_MARIANA_ISLANDS" "NORWAY" "OMAN" "PAKISTAN" "PALAU" "PANAMA" "PAPUA_NEW_GUINEA" "PARAGUAY" "PERU" "PHILIPPINES" "PITCAIRN" "POLAND" "PORTUGAL" "PUERTO_RICO" "QATAR" "REUNION" "ROMANIA" "RUSSIA" "RWANDA" "SAINT_KITTS_AND_NEVIS" "SAINT_LUCIA" "SAINT_MARTIN" "SAINT_VINCENT_AND_THE_GRENADINES" "SAMOA" "SAN_MARINO" "SAO_TOME_AND_PRINCIPE" "SAUDI_ARABIA" "SENEGAL" "SERBIA" "SERBIA_MONTENEGRO" "SEYCHELLES" "SIERRA_LEONE" "SINGAPORE" "SLOVAKIA" "SLOVENIA" "SOLOMON_ISLANDS" "SOMALIA" "SOUTH_AFRICA" "SOUTH_GEORGIA_AND_SOUTH_SS" "SOUTH_SUDAN" "SPAIN" "SRI_LANKA" "ST_HELENA" "ST_PIERRE_AND_MIQUELON" "SUDAN" "SURINAME" "SVALBARD_AND_JAN_MAYEN_ISLANDS" "SWAZILAND" "SWEDEN" "SWITZERLAND" "SYRIA" "TAIWAN" "TAJIKISTAN" "TANZANIA_UNITED_REPUBLIC_OF" "THAILAND" "TOGO" "TOKELAU" "TONGA" "TRINIDAD_AND_TOBAGO" "TUNISIA" "TURKEY" "TURKMENISTAN" "TURKS_AND_CAICOS_ISLANDS" "TUVALU" "UGANDA" "UKRAINE" "UAE" "UNITED_KINGDOM" "UNITED_STATES" "URUGUAY" "US_MINOR_ISLANDS" "UZBEKISTAN" "VANUATU" "VENEZUELA" "VIETNAM" "VIRGIN_ISLANDS_BRITISH" "VIRGIN_ISLANDS_US" "WALLIS_AND_FUTUNA_ISLANDS" "WESTERN_SAHARA" "YEMEN" "ZAMBIA" "ZIMBABWE" "DEBUG" "DEMO" Example: country=UNITED_STATES Filter APs based on the country code. AP models that are not certified for this country are omitted from the response. |
| serviceId | string <uuid> Get all the APs based with the service. |
| feature | string Get all the APs that support a given feature. |
[- {
- "canDelete": true,
- "canEdit": true,
- "serialNumber": "1703Y-1411400000",
- "hardwareType": "AP3916ic-ROW",
- "platformName": "AP3916",
- "macAddress": "D8:84:66:79:E3:00",
- "apName": "1703Y-1411400000",
- "softwareVersion": "10.51.01.0101",
- "hostSite": "ThornhillCentralized",
- "description": "Lab7 Cam AP1",
- "ethPowerStatus": "normal",
- "services": [
- "1ecaDot1XExternal"
], - "ipAddress": "10.47.75.110",
- "radios": [
- {
- "radioIndex": 1,
- "mode": "anc",
- "channelwidth": "Ch1Width_Auto",
- "txPower": 4,
- "channel": "149",
- "adminState": true,
- "useSmartRf": true
}
], - "environment": "indoor",
- "mgmtVlanId": -1,
- "lag": false,
- "ge2mode": "Backup",
- "forcePoEPlus": false,
- "rfMgmtPolicyId": "bd9d7042-f0c7-11e7-8c3f-9a214cf093af",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "proxied": "Local",
- "hostname": "AP510-1234567890123456",
- "ovr": false
}
]Filter the list of access points based on the query.
| query | string Query string to filter the AP list. |
| requestedColumns | Array of strings Columns list to show. |
[- {
- "canDelete": true,
- "canEdit": true,
- "serialNumber": "1703Y-1411400000",
- "hardwareType": "AP3916ic-ROW",
- "platformName": "AP3916",
- "macAddress": "D8:84:66:79:E3:00",
- "apName": "1703Y-1411400000",
- "softwareVersion": "10.51.01.0101",
- "hostSite": "ThornhillCentralized",
- "description": "Lab7 Cam AP1",
- "ethPowerStatus": "normal",
- "services": [
- "1ecaDot1XExternal"
], - "ipAddress": "10.47.75.110",
- "radios": [
- {
- "radioIndex": 1,
- "mode": "anc",
- "channelwidth": "Ch1Width_Auto",
- "txPower": 4,
- "channel": "149",
- "adminState": true,
- "useSmartRf": true
}
], - "environment": "indoor",
- "mgmtVlanId": -1,
- "lag": false,
- "ge2mode": "Backup",
- "forcePoEPlus": false,
- "rfMgmtPolicyId": "bd9d7042-f0c7-11e7-8c3f-9a214cf093af",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "proxied": "Local",
- "hostname": "AP510-1234567890123456",
- "ovr": false,
- "wiredClients": 5,
- "pwrSource": "AfNormal",
- "profileName": "SJ_UWB",
- "features": [
- "RELEASE-TO-CLOUD"
], - "iot": [
- "IBEACON",
- "GENERIC",
- "OFF"
], - "usb": "IMAGOTAG"
}
]Filter the list of access points base on the query.
| query | string Query string to filter the AP list |
| columnsVisualize | Array of strings Columns list to return |
{- "deviceSerialNo": "1740W-2030400000",
- "timeStamp": 1554476614000,
- "channelWidth": [
- "Ch1Width_20MHz: 1"
], - "entitlementStatus": 0,
- "bandAndChannel": {
- "1740W-2030400000.1740W-2030400000/2.radDrmNoDrmCurrentChannel": 16783001,
- "1740W-2030400000.1740W-2030400000/1.radDrmNoDrmCurrentChannel": 16779653
}, - "activeAlerts": [ ],
- "wirelessProtocols": [
- 18
], - "wiredClientCount": 0,
- "hwType": "AP-7612-680B30-WR",
- "deviceHealth": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "qualityMetric": null,
- "currentPowerLevel": {
- "1740W-2030400000.1740W-2030400000/2.radCurrentPower": 4,
- "1740W-2030400000.1740W-2030400000/1.radCurrentPower": 4
}, - "swVersion": "5.9.3.2-002R",
- "ipAddress": "10.47.75.108",
- "location": "DevelopmentLab7",
- "macAddress": "B8:50:01:3B:3E:1C",
- "camIpAddress": null,
- "ethPowerStatus": null,
- "throughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466202074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 1,
- "value": "1"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 382059.37111111113
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 515780151
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Wireless Access Point",
- "name": "Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Extreme IdentiFi Wireless Access Point",
- "name": "Extreme IdentiFi Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 2
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 4
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "rfQuality": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RF Quality",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "unit": "",
- "statistics": [
- {
- "unit": "",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3,
- "value": "3"
}
], - "statName": "Unique RFQI",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization2_4": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 2.4GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 5GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "noisePerRadio": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Noise Per Channel",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": -97,
- "value": "-97"
}
], - "statName": "R1",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "ratioOfCurrentUsersToBand": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Load Per Radio",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "2.4 GHz",
- "name": "2.4 GHz",
- "value": 2
}
]
}
], - "topClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 71.5
}
]
}
], - "worstClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "22:B3:99:9C:87:98",
- "name": "22:B3:99:9C:87:98",
- "value": 37
}
]
}
], - "topClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "baseliningAPRFQI": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RFQI",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "Link Quality",
- "statistics": [
- {
- "unit": "Link Quality",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3.5,
- "value": "3.5"
}
], - "statName": "RFQI Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRss": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RSS",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dBm",
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": -63,
- "value": "-63.0"
}
], - "statName": "Rss Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPTxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Tx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 71500000,
- "value": "71500000.0"
}
], - "statName": "TxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Rx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 13500000,
- "value": "13500000.0"
}
], - "statName": "RxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Retries",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "statistics": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466081773.8772,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Retries Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "apQoE": [
- {
- "reportName": "AP QoE Baseline",
- "reportType": "Distribution",
- "unit": "",
- "listBad": [ ],
- "listAverage": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.4
}
], - "listGood": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.6
}
], - "listExcellent": [ ],
- "enable": 1,
- "fromTimeInMillis": 1554465844581.09,
- "toTimeInMillis": 1554476644581.09,
- "apQoEseries": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465600000,
- "numPoints": 2.379628627405675,
- "value": "2.3796286274056748"
}
], - "statName": "apQoE_Base",
- "type": "number",
- "connectto": "b"
}
], - "clientsQoEdistribution": [
- {
- "id": "Bad",
- "name": "Bad",
- "value": 0,
- "fracttionofTime": 0,
- "fracttionofTimeLower": 25,
- "fracttionofTimeHigher": 100,
- "clients": 0,
- "totalClients": 5,
- "clientPercentage": 0
}
]
}
]
}Return the optional columns list.
| suggestValues | boolean Default: true Scan for suggested values for columns. |
{- "ipAddress": {
- "dtype": "object",
- "contextVals": [
- "0.0.0.0"
]
}, - "softwareVersion": {
- "dtype": "object",
- "contextVals": [
- ""
]
}
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid access point serial number |
[- {
- "serviceId": "804078cd-1b76-48f4-a70f-d01f07c75c47",
- "index": 1
}
][- {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "ipAddress": "0.0.0.0",
- "cidr": 0,
- "hostname": "aaa",
- "model": "aaa",
- "serial": "",
- "siteId": "eaab6b13-865d-4475-a26f-d3d95b6e0812",
- "devGrName": "DG-3935-Blackstone"
}
]The list of access point adoption rules
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| ipAddress | string |
| cidr | number [ 0 .. 32 ] |
| hostname | string |
| model | string |
| serial | string |
| siteId required | string |
| devGrName required | string |
[- {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "ipAddress": "0.0.0.0",
- "cidr": 0,
- "hostname": "aaa",
- "model": "aaa",
- "serial": "",
- "siteId": "eaab6b13-865d-4475-a26f-d3d95b6e0812",
- "devGrName": "DG-3935-Blackstone"
}
]{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "ipAddress": "0.0.0.0",
- "cidr": 0,
- "hostname": "aaa",
- "model": "aaa",
- "serial": "",
- "siteId": "eaab6b13-865d-4475-a26f-d3d95b6e0812",
- "devGrName": "DG-3935-Blackstone"
}| apName | string A non-empty string containing the name of the new access point to be created |
| description | string A user-supplied string describing this access point. Its contents can be completely arbitrary. It can be null or empty. |
| hardwaretype | string |
| serialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: serialNumber=1730Y-1007800000 Valid access point serial number for the access point to be created |
| complianceRegion | string Valid complianceRegion taken from /v1/aps/hardwaretypes |
{- "iotiBeaconMajor": 0,
- "iotiBeaconMajorOvr": false,
- "iotiBeaconMinor": 0,
- "iotiBeaconMinorOvr": false,
- "iotiBeaconMeasuredRssi": 0,
- "iotiBeaconMeasuredRssiOvr": false,
- "iotiBeaconTxPower": 0,
- "iotiBeaconTxPowerOvr": false,
- "iotEddystoneUrl": "",
- "iotEddystoneUrlOvr": false,
- "iotEddystoneMeasuredRssi": 0,
- "iotEddystoneMeasuredRssiOvr": false,
- "iotEddystoneTxPower": 0,
- "iotEddystoneTxPowerOvr": false,
- "iotAppSupported": "MULTI",
- "iotAntennaModelId": 0
}| hardwareType | string Access point hardware type |
{- "iotiBeaconMajor": 0,
- "iotiBeaconMajorOvr": false,
- "iotiBeaconMinor": 0,
- "iotiBeaconMinorOvr": false,
- "iotiBeaconMeasuredRssi": 0,
- "iotiBeaconMeasuredRssiOvr": false,
- "iotiBeaconTxPower": 0,
- "iotiBeaconTxPowerOvr": false,
- "iotEddystoneUrl": "",
- "iotEddystoneUrlOvr": false,
- "iotEddystoneMeasuredRssi": 0,
- "iotEddystoneMeasuredRssiOvr": false,
- "iotEddystoneTxPower": 0,
- "iotEddystoneTxPowerOvr": false,
- "iotAppSupported": "MULTI",
- "iotAntennaModelId": 0
}A non-empty, valid list of access point serial numbers
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}A not empty, valid ApMultiConfigElement instance with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers | Array of strings (SerialNumber) Access Point serial number list |
Array of objects (RadioMultiConfigElement) A list of radios used in the access points multi config Validations : Not null and non-empty list of RadioElements |
{- "custId": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "canDelete": true,
- "canEdit": true,
- "serialNumbers": [
- "1730Y-1007800000"
], - "radios": [
- {
- "radioIndex": 1,
- "mode": "sensor",
- "channelwidth": "Ch1Width_20MHz",
- "txMaxPower": 0,
- "channel": "string",
- "useSmartRf": true
}
]
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
required | object (ApCsrElement) This POJO represents the X509 CSR required information. |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true,
- "csr": {
- "keySize": "twentyFortyEight",
- "country": "US",
- "state": "CA",
- "location": "San Jose",
- "organization": "Extreme Networks",
- "unit": "Wireless",
- "commonNameType": "Mac",
- "email": "..."
}
}null| password | string Certificate password (pkcs12) |
| serialNumbers required | Array of strings (SerialNumber) |
| filename required | string |
| data required | string File database 64 encoded |
{- "password": "string",
- "serialNumbers": [
- "1730Y-1007800000"
], - "filename": "string",
- "data": "string"
}nullA non-empty, valid list of access point serial numbers
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 A non-empty, valid access point serial number |
{- "issuedDate": 0,
- "expiryDate": 0,
- "issuedBy": "string",
- "issuedTo": "string",
- "subjectAltName": "string",
- "serial": "string"
}| country | string (Country) Enum: "AFGHANISTAN" "ALBANIA" "ALGERIA" "AMERICAN_SAMOA" "ANDORRA" "ANGOLA" "ANGUILLA" "ANTARCTICA" "ANTIGUA_BARBUDA" "ARGENTINA" "ARMENIA" "ARUBA" "AUSTRALIA" "AUSTRIA" "AZERBAIJAN" "BAHAMAS" "BAHRAIN" "BANGLADESH" "BARBADOS" "BELARUS" "BELGIUM" "BELIZE" "BENIN" "BERMUDA" "BHUTAN" "BOLIVIA" "BONAIRE_SINT_EUSTATIUS_AND_SABA" "BOSNIA_HERZEGOVINA" "BOTSWANA" "BOUVET_ISLAND" "BRAZIL" "BRITISH_INDIAN_OCEAN_TERRITORY" "BRUNEI_DARUSSALAM" "BULGARIA" "BURKINA_FASO" "BURUNDI" "CAMBODIA" "CAMEROON" "CANADA" "CAPE_VERDE" "CAYMAN_ISLANDS" "CENTRAL_AFRICAN_REPUBLIC" "CHAD" "CHILE" "CHINA" "CHRISTMAS_ISLAND" "COCOS_KEELING_ISLANDS" "COLOMBIA" "COMOROS" "CONGO" "CONGO_THE_DRC" "COOK_ISLANDS" "COSTA_RICA" "IVORY_COAST" "CROATIA" "CUBA" "CURACAO" "CYPRUS" "CZECH" "DENMARK" "DJIBOUTI" "DOMINICA" "DOMINICAN" "EAST_TIMOR" "ECUADOR" "EGYPT" "EL_SALVADOR" "EQUATORIAL_GUINEA" "ERITREA" "ESTONIA" "ETHIOPIA" "FALKLAND_ISLANDS_MALVINAS" "FAEROE_ISLANDS" "FIJI" "FINLAND" "FRANCE" "FRANCE_METROPOLITAN" "FRENCH_GUIANA" "FRENCH_POLYNESIA" "FRENCH_SOUTHERN_TERRITORIES" "GABON" "GAMBIA" "GEORGIA" "GERMANY" "GHANA" "GIBRALTAR" "GREECE" "GREENLAND" "GRENADA" "GUADELOUPE" "GUAM" "GUATEMALA" "GUINEA" "GUINEA_BISSAU" "GUYANA" "HAITI" "HEARD_AND_MC_DONALD_ISLANDS" "VATICAN" "HONDURAS" "HONG_KONG" "HUNGARY" "ICELAND" "INDIA" "INDONESIA" "IRAN" "IRAQ" "IRELAND" "ISLE_OF_MAN" "ISRAEL" "ITALY" "JAMAICA" "JAPAN" "JORDAN" "KAZAKHSTAN" "KENYA" "KIRIBATI" "KOREA_NORTH" "KOREA" "KOSOVO" "KUWAIT" "KYRGYZSTAN" "LAOS" "LATVIA" "LEBANON" "LESOTHO" "LIBERIA" "LIBYA" "LIECHTENSTEIN" "LITHUANIA" "LUXEMBOURG" "MACAU" "MACAULL" "MACEDONIA" "MADAGASCAR" "MALAWI" "MALAYSIA" "MALDIVES" "MALI" "MALTA" "MARSHALL_ISLANDS" "MARTINIQUE" "MAURITANIA" "MAURITIUS" "MAYOTTE" "MEXICO" "MICRONESIA_FEDERATED_STATES_OF" "MOLDOVA_REPUBLIC_OF" "MONACO" "MONGOLIA" "MONTENEGRO" "MONTSERRAT" "MOROCCO" "MOZAMIBIQUE" "MYANMAR_BURMA" "NAMIBIA" "NAURU" "NEPAL" "NETHERLANDS" "NETHERLANDS_ANTILLES" "NEW_CALEDONIA" "NEW_ZEALAND" "NICARAGUA" "NIGER" "NIGERIA" "NIUE" "NORFOLK_ISLAND" "NORTHERN_MARIANA_ISLANDS" "NORWAY" "OMAN" "PAKISTAN" "PALAU" "PANAMA" "PAPUA_NEW_GUINEA" "PARAGUAY" "PERU" "PHILIPPINES" "PITCAIRN" "POLAND" "PORTUGAL" "PUERTO_RICO" "QATAR" "REUNION" "ROMANIA" "RUSSIA" "RWANDA" "SAINT_KITTS_AND_NEVIS" "SAINT_LUCIA" "SAINT_MARTIN" "SAINT_VINCENT_AND_THE_GRENADINES" "SAMOA" "SAN_MARINO" "SAO_TOME_AND_PRINCIPE" "SAUDI_ARABIA" "SENEGAL" "SERBIA" "SERBIA_MONTENEGRO" "SEYCHELLES" "SIERRA_LEONE" "SINGAPORE" "SLOVAKIA" "SLOVENIA" "SOLOMON_ISLANDS" "SOMALIA" "SOUTH_AFRICA" "SOUTH_GEORGIA_AND_SOUTH_SS" "SOUTH_SUDAN" "SPAIN" "SRI_LANKA" "ST_HELENA" "ST_PIERRE_AND_MIQUELON" "SUDAN" "SURINAME" "SVALBARD_AND_JAN_MAYEN_ISLANDS" "SWAZILAND" "SWEDEN" "SWITZERLAND" "SYRIA" "TAIWAN" "TAJIKISTAN" "TANZANIA_UNITED_REPUBLIC_OF" "THAILAND" "TOGO" "TOKELAU" "TONGA" "TRINIDAD_AND_TOBAGO" "TUNISIA" "TURKEY" "TURKMENISTAN" "TURKS_AND_CAICOS_ISLANDS" "TUVALU" "UGANDA" "UKRAINE" "UAE" "UNITED_KINGDOM" "UNITED_STATES" "URUGUAY" "US_MINOR_ISLANDS" "UZBEKISTAN" "VANUATU" "VENEZUELA" "VIETNAM" "VIRGIN_ISLANDS_BRITISH" "VIRGIN_ISLANDS_US" "WALLIS_AND_FUTUNA_ISLANDS" "WESTERN_SAHARA" "YEMEN" "ZAMBIA" "ZIMBABWE" "DEBUG" "DEMO" Example: country=UNITED_STATES Filter supported AP hardware platforms based on the country code. AP models that are not certified for this country are omitted from the response. |
[- {
- "platformName": "AP3912",
- "displayName": "AP3912",
- "imagePath": "AP3912",
- "defaultImage": "AP391x-10.51.01.0101.img",
- "features": [
- "AP-FILTER-64-RULES"
], - "camera": false
}
]A non-empty, valid list of access point serial numbers
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}A non-empty, valid list of access point serial numbers
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}A non-empty, valid list of access point serial numbers
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| siteId required | string <uuid> UUID of site |
| deviceGroupId required | string <uuid> UUID of device group |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "siteId": "26942420-6179-11e8-a0a4-c98f03226474",
- "deviceGroupId": "f2d734e8-e399-11e9-81b4-2a2ae2dbcce4",
- "serialNumbers": [
- "17095522200273",
- "1637Y-1008600000"
]
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| affinity required | string (PreferredAffinity) Default: "Any" Enum: "Any" "Primary" "Backup" |
| affinityOvr | boolean Default: true |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "affinity": "Primary",
- "affinityOvr": false,
- "serialNumbers": [
- "17095522200273",
- "1637Y-1008600000"
]
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| floorId required | string <uuid> UUID of floor |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "floorId": "26942420-6179-11e8-a0a4-c98f03226474",
- "serialNumbers": [
- "17095522200273",
- "1637Y-1008600000"
]
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| from required | string^[[\\p{Print}&&[^\t\n\r;:&\\p{Cntrl}]]*]{11,1... A non-empty, valid access point serial number from which configurations should be cloned |
| to required | string^[[\\p{Print}&&[^\t\n\r;:&\\p{Cntrl}]]*]{11,1... A non-empty, valid access point serial number to which configurations should be cloned |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "ruOperationMode": 0,
- "dnsRetries": 3,
- "dnsDelay": 3,
- "sshPassword": "new2day",
- "sshPasswordExpiry": 180
}Contains the following input information: ruOperationMode, dnsRetries, dnsDelay, sshPassword
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| ruOperationMode | number ruOperationMode: defines how the controller behaves when registering new, unknown devices.
During the registration process, the controllers approval of the AP serial number depends
on the security mode that has been set: The Allow all Wireless APs to connect option is selected by default. Validations : A valid integer value, the range is 0 (Allow all APs to connect) or 1 Allow only approved APs to connect |
| dnsRetries | number The number of DNS retry attempts. The number of retries is limited to 255 for the discovery. The default number of retries is 3. Validations : A valid integer value, the range is between 1 and 255. |
| dnsDelay | number The time delay between each DNS retry attempt. The default delay between retries is 3 seconds. Validations : A valid integer value, the range is between 1 and 10 seconds. |
| sshPassword | string The Secure Shell password for the device Validations : password field |
{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "ruOperationMode": 0,
- "dnsRetries": 3,
- "dnsDelay": 3,
- "sshPassword": "new2day",
- "sshPasswordExpiry": 180
}{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "ruOperationMode": 0,
- "dnsRetries": 3,
- "dnsDelay": 3,
- "sshPassword": "new2day",
- "sshPasswordExpiry": 180
}Set the state of access points to one of the following values - approved, pending, released, foreign.
| ruState | string (ruState) Enum: "approved" "foreign" "pending" "r1backgroundscan" "r2backgroundscan" "released" Example: ruState=approved Contains RuState value: approved, pending, released, foreign |
A non-empty, valid list of access point serial numbers numbers
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}Initiates software upgrade for a list of access points using a specific AP software version.
| swVersion | string |
| upgradeNoServiceInterruption | boolean |
A non-empty, valid list of access point serial numbers numbers
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}Retrieves the list of available software image versions that can be used to upgrade a list of access points.
A non-empty, valid list of access point serial numbers numbers
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}[- "5.9.3.2-002R"
]Initiates software upgrade for a list of access points using a specific access point software image name.
| apImageName | string A non-empty, valid string containing the software image name to be used for the upgrade |
A non-empty, valid list of access point serial numbers numbers
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "serialNumbers": [
- "...",
- "..."
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}A map containing the access point serial number and desired device version
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| utcSecondsSinceEpoc | number The AP upgrade schedule time in UTC seconds since epoc; null for 'now' |
object |
{- "utcSecondsSinceEpoc": 1456337465,
- "deviceInfo": {
- "property1": "{Serial1 : deviceVersion1 , serial2 : deviceVersion2 }",
- "property2": "{Serial1 : deviceVersion1 , serial2 : deviceVersion2 }"
}, - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| duration | string3H|3D|14D Default: "3H" Example: duration=3H |
| widgetList | string |
[- {
- "deviceSerialNo": "1740W-2030400000",
- "timeStamp": 1554476614000,
- "channelWidth": [
- "Ch1Width_20MHz: 1"
], - "entitlementStatus": 0,
- "bandAndChannel": {
- "1740W-2030400000.1740W-2030400000/2.radDrmNoDrmCurrentChannel": 16783001,
- "1740W-2030400000.1740W-2030400000/1.radDrmNoDrmCurrentChannel": 16779653
}, - "activeAlerts": [ ],
- "wirelessProtocols": [
- 18
], - "wiredClientCount": 0,
- "hwType": "AP-7612-680B30-WR",
- "deviceHealth": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "qualityMetric": null,
- "currentPowerLevel": {
- "1740W-2030400000.1740W-2030400000/2.radCurrentPower": 4,
- "1740W-2030400000.1740W-2030400000/1.radCurrentPower": 4
}, - "swVersion": "5.9.3.2-002R",
- "ipAddress": "10.47.75.108",
- "location": "DevelopmentLab7",
- "macAddress": "B8:50:01:3B:3E:1C",
- "camIpAddress": null,
- "ethPowerStatus": null,
- "throughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466202074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 1,
- "value": "1"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 382059.37111111113
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 515780151
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Wireless Access Point",
- "name": "Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Extreme IdentiFi Wireless Access Point",
- "name": "Extreme IdentiFi Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 2
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 4
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "rfQuality": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RF Quality",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "unit": "",
- "statistics": [
- {
- "unit": "",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3,
- "value": "3"
}
], - "statName": "Unique RFQI",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization2_4": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 2.4GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 5GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "noisePerRadio": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Noise Per Channel",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": -97,
- "value": "-97"
}
], - "statName": "R1",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "ratioOfCurrentUsersToBand": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Load Per Radio",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "2.4 GHz",
- "name": "2.4 GHz",
- "value": 2
}
]
}
], - "topClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 71.5
}
]
}
], - "worstClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "22:B3:99:9C:87:98",
- "name": "22:B3:99:9C:87:98",
- "value": 37
}
]
}
], - "topClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "baseliningAPRFQI": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RFQI",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "Link Quality",
- "statistics": [
- {
- "unit": "Link Quality",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3.5,
- "value": "3.5"
}
], - "statName": "RFQI Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRss": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RSS",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dBm",
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": -63,
- "value": "-63.0"
}
], - "statName": "Rss Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPTxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Tx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 71500000,
- "value": "71500000.0"
}
], - "statName": "TxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Rx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 13500000,
- "value": "13500000.0"
}
], - "statName": "RxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Retries",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "statistics": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466081773.8772,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Retries Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "apQoE": [
- {
- "reportName": "AP QoE Baseline",
- "reportType": "Distribution",
- "unit": "",
- "listBad": [ ],
- "listAverage": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.4
}
], - "listGood": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.6
}
], - "listExcellent": [ ],
- "enable": 1,
- "fromTimeInMillis": 1554465844581.09,
- "toTimeInMillis": 1554476644581.09,
- "apQoEseries": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465600000,
- "numPoints": 2.379628627405675,
- "value": "2.3796286274056748"
}
], - "statName": "apQoE_Base",
- "type": "number",
- "connectto": "b"
}
], - "clientsQoEdistribution": [
- {
- "id": "Bad",
- "name": "Bad",
- "value": 0,
- "fracttionofTime": 0,
- "fracttionofTimeLower": 25,
- "fracttionofTimeHigher": 100,
- "clients": 0,
- "totalClients": 5,
- "clientPercentage": 0
}
]
}
]
}
]| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 AP serial number |
A valid Smart RF report request
| duration | string (Duration) Enum: "D_3h" "D_3d" "D_14d" Report duration |
Array of objects (WidgetInfoElement) | |
| band | string (RadioBand) Enum: "Band5" "Band6" "Band24" "BandNONE" |
{- "duration": "D_14d",
- "widgets": [
- {
- "id": "ulDlUsageTimeseries",
- "filters": [
- "Filter_2_4"
]
}
], - "band": "Band5"
}{- "smartRFMitigation": [
- {
- "fromTimeInMillis": 1554474220231.644,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554485020231.644,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:20",
- "name": "02:02:6F:E9:92:20",
- "value": 0
}
]
}
], - "smartRFMitigationHistory": [
- {
- "fromTimeInMillis": 1554474766055.964,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554485566055.964,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554474841814.9873,
- "numPoints": 13,
- "value": "13"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "apPerChannel": [
- {
- "fromTimeInMillis": 1554474220231.644,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554485020231.644,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:20",
- "name": "02:02:6F:E9:92:20",
- "value": 0
}
]
}
], - "apPower": [
- {
- "fromTimeInMillis": 1554474220231.644,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554485020231.644,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:20",
- "name": "02:02:6F:E9:92:20",
- "value": 0
}
]
}
], - "smartRFChannelEnergy": {
- "toTimeInMillis": 12345,
- "fromTimeInMillis": 12345,
- "reportType": "Stack",
- "distributionStats": [
- {
- "id": "D4:63:FE:D9:8F:09",
- "name": "D4:63:FE:D9:8F:09",
- "value": [
- 10,
- 20
], - "labels": [
- "upload",
- "download"
]
}
], - "unit": "bps",
- "reportName": "Top clients by Usage"
}, - "smartRFChannelInspector": [
- {
- "reportType": "Table",
- "tableData": {
- "columnNames": [
- "Status"
], - "rowData": [ ]
}, - "reportName": "Packet Capture Instances"
}
], - "smartRFChannelInspectorOnDemand": [
- {
- "reportType": "Table",
- "tableData": {
- "columnNames": [
- "Status"
], - "rowData": [ ]
}, - "reportName": "Packet Capture Instances"
}
], - "neighborList": [
- {
- "reportType": "Table",
- "tableData": {
- "columnNames": [
- "Status"
], - "rowData": [ ]
}, - "reportName": "Packet Capture Instances"
}
], - "neighborListOnDemand": [
- {
- "reportType": "Table",
- "tableData": {
- "columnNames": [
- "Status"
], - "rowData": [ ]
}, - "reportName": "Packet Capture Instances"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 AP serial number |
A valid report request
| duration | string (Duration) Enum: "D_3h" "D_3d" "D_14d" Report duration |
Array of objects (WidgetInfoElement) |
{- "duration": "D_14d",
- "widgets": [
- {
- "id": "ulDlUsageTimeseries",
- "filters": [
- "Filter_2_4"
]
}
]
}{- "deviceSerialNo": "1740W-2030400000",
- "timeStamp": 1554476614000,
- "channelWidth": [
- "Ch1Width_20MHz: 1"
], - "entitlementStatus": 0,
- "bandAndChannel": {
- "1740W-2030400000.1740W-2030400000/2.radDrmNoDrmCurrentChannel": 16783001,
- "1740W-2030400000.1740W-2030400000/1.radDrmNoDrmCurrentChannel": 16779653
}, - "activeAlerts": [ ],
- "wirelessProtocols": [
- 18
], - "wiredClientCount": 0,
- "hwType": "AP-7612-680B30-WR",
- "deviceHealth": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "qualityMetric": null,
- "currentPowerLevel": {
- "1740W-2030400000.1740W-2030400000/2.radCurrentPower": 4,
- "1740W-2030400000.1740W-2030400000/1.radCurrentPower": 4
}, - "swVersion": "5.9.3.2-002R",
- "ipAddress": "10.47.75.108",
- "location": "DevelopmentLab7",
- "macAddress": "B8:50:01:3B:3E:1C",
- "camIpAddress": null,
- "ethPowerStatus": null,
- "throughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466202074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 1,
- "value": "1"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 382059.37111111113
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 515780151
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Wireless Access Point",
- "name": "Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Extreme IdentiFi Wireless Access Point",
- "name": "Extreme IdentiFi Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 2
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 4
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "rfQuality": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RF Quality",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "unit": "",
- "statistics": [
- {
- "unit": "",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3,
- "value": "3"
}
], - "statName": "Unique RFQI",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization2_4": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 2.4GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 5GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "noisePerRadio": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Noise Per Channel",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": -97,
- "value": "-97"
}
], - "statName": "R1",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "ratioOfCurrentUsersToBand": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Load Per Radio",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "2.4 GHz",
- "name": "2.4 GHz",
- "value": 2
}
]
}
], - "topClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 71.5
}
]
}
], - "worstClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "22:B3:99:9C:87:98",
- "name": "22:B3:99:9C:87:98",
- "value": 37
}
]
}
], - "topClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "baseliningAPRFQI": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RFQI",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "Link Quality",
- "statistics": [
- {
- "unit": "Link Quality",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3.5,
- "value": "3.5"
}
], - "statName": "RFQI Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRss": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RSS",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dBm",
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": -63,
- "value": "-63.0"
}
], - "statName": "Rss Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPTxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Tx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 71500000,
- "value": "71500000.0"
}
], - "statName": "TxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Rx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 13500000,
- "value": "13500000.0"
}
], - "statName": "RxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Retries",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "statistics": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466081773.8772,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Retries Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "apQoE": [
- {
- "reportName": "AP QoE Baseline",
- "reportType": "Distribution",
- "unit": "",
- "listBad": [ ],
- "listAverage": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.4
}
], - "listGood": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.6
}
], - "listExcellent": [ ],
- "enable": 1,
- "fromTimeInMillis": 1554465844581.09,
- "toTimeInMillis": 1554476644581.09,
- "apQoEseries": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465600000,
- "numPoints": 2.379628627405675,
- "value": "2.3796286274056748"
}
], - "statName": "apQoE_Base",
- "type": "number",
- "connectto": "b"
}
], - "clientsQoEdistribution": [
- {
- "id": "Bad",
- "name": "Bad",
- "value": 0,
- "fracttionofTime": 0,
- "fracttionofTimeLower": 25,
- "fracttionofTimeHigher": 100,
- "clients": 0,
- "totalClients": 5,
- "clientPercentage": 0
}
]
}
], - "eslDetails": [
- {
- "deviceType": "IMAGOTAG",
- "deviceState": "CONNECTED",
- "serverConnection": "CONNECTED"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 AP serial number |
| duration | string3H|3D|14D Default: "3H" Example: duration=3H |
| widgetList | string Example: widgetList=throughputReport|2_4,byteUtilization|5 |
{- "deviceSerialNo": "1740W-2030400000",
- "timeStamp": 1554476614000,
- "channelWidth": [
- "Ch1Width_20MHz: 1"
], - "entitlementStatus": 0,
- "bandAndChannel": {
- "1740W-2030400000.1740W-2030400000/2.radDrmNoDrmCurrentChannel": 16783001,
- "1740W-2030400000.1740W-2030400000/1.radDrmNoDrmCurrentChannel": 16779653
}, - "activeAlerts": [ ],
- "wirelessProtocols": [
- 18
], - "wiredClientCount": 0,
- "hwType": "AP-7612-680B30-WR",
- "deviceHealth": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "qualityMetric": null,
- "currentPowerLevel": {
- "1740W-2030400000.1740W-2030400000/2.radCurrentPower": 4,
- "1740W-2030400000.1740W-2030400000/1.radCurrentPower": 4
}, - "swVersion": "5.9.3.2-002R",
- "ipAddress": "10.47.75.108",
- "location": "DevelopmentLab7",
- "macAddress": "B8:50:01:3B:3E:1C",
- "camIpAddress": null,
- "ethPowerStatus": null,
- "throughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466202074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 1,
- "value": "1"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 382059.37111111113
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 515780151
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Wireless Access Point",
- "name": "Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Extreme IdentiFi Wireless Access Point",
- "name": "Extreme IdentiFi Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 2
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 4
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "rfQuality": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RF Quality",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "unit": "",
- "statistics": [
- {
- "unit": "",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3,
- "value": "3"
}
], - "statName": "Unique RFQI",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization2_4": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 2.4GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 5GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "noisePerRadio": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Noise Per Channel",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": -97,
- "value": "-97"
}
], - "statName": "R1",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "ratioOfCurrentUsersToBand": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Load Per Radio",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "2.4 GHz",
- "name": "2.4 GHz",
- "value": 2
}
]
}
], - "topClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 71.5
}
]
}
], - "worstClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "22:B3:99:9C:87:98",
- "name": "22:B3:99:9C:87:98",
- "value": 37
}
]
}
], - "topClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "baseliningAPRFQI": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RFQI",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "Link Quality",
- "statistics": [
- {
- "unit": "Link Quality",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3.5,
- "value": "3.5"
}
], - "statName": "RFQI Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRss": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RSS",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dBm",
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": -63,
- "value": "-63.0"
}
], - "statName": "Rss Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPTxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Tx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 71500000,
- "value": "71500000.0"
}
], - "statName": "TxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Rx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 13500000,
- "value": "13500000.0"
}
], - "statName": "RxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Retries",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "statistics": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466081773.8772,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Retries Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "apQoE": [
- {
- "reportName": "AP QoE Baseline",
- "reportType": "Distribution",
- "unit": "",
- "listBad": [ ],
- "listAverage": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.4
}
], - "listGood": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.6
}
], - "listExcellent": [ ],
- "enable": 1,
- "fromTimeInMillis": 1554465844581.09,
- "toTimeInMillis": 1554476644581.09,
- "apQoEseries": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465600000,
- "numPoints": 2.379628627405675,
- "value": "2.3796286274056748"
}
], - "statName": "apQoE_Base",
- "type": "number",
- "connectto": "b"
}
], - "clientsQoEdistribution": [
- {
- "id": "Bad",
- "name": "Bad",
- "value": 0,
- "fracttionofTime": 0,
- "fracttionofTimeLower": 25,
- "fracttionofTimeHigher": 100,
- "clients": 0,
- "totalClients": 5,
- "clientPercentage": 0
}
]
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 A non-empty, valid access point serial number |
{- "iotiBeaconMajor": 0,
- "iotiBeaconMajorOvr": false,
- "iotiBeaconMinor": 0,
- "iotiBeaconMinorOvr": false,
- "iotiBeaconMeasuredRssi": 0,
- "iotiBeaconMeasuredRssiOvr": false,
- "iotiBeaconTxPower": 0,
- "iotiBeaconTxPowerOvr": false,
- "iotEddystoneUrl": "",
- "iotEddystoneUrlOvr": false,
- "iotEddystoneMeasuredRssi": 0,
- "iotEddystoneMeasuredRssiOvr": false,
- "iotEddystoneTxPower": 0,
- "iotEddystoneTxPowerOvr": false,
- "iotAppSupported": "MULTI",
- "iotAntennaModelId": 0
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 |
A non-empty, valid AccessPointElement instance with the configured parameters. The instance must have the mandatory attributes such as serial number. It can also have optional parameters.
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| iotiBeaconMajor | number [ 0 .. 65535 ] Default: 0 |
| iotiBeaconMajorOvr | boolean Default: false |
| iotiBeaconMinor | number [ 0 .. 65535 ] Default: 0 |
| iotiBeaconMinorOvr | boolean Default: false |
| iotEddistoneUrl | string <uri> <= 34 characters |
| iotEddistoneUrlOvr | boolean Default: false |
| iotMeasuredRssi | integer [ -120 .. 15 ] Default: -30 |
| iotMeasuredRssiOverride | boolean Default: false |
| iotAntennaModelId | number |
| iotAppId | string (IoTApplicationId) Enum: "iBeaconAdvertisement" "iBeaconScan" "eddystoneAdvertisement" "eddystoneScan" "threadGateway" "genericScan" |
| iotAppSupported | string (IotApplicationSupported) Default: "SINGLE" Enum: "SINGLE" "MULTI" IoT profile supported type |
| serialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ The globally unique serial number of the device being registered. The serial number is represented as a string. |
| hardwareType required | string The model number of the device. The model number is a human readable string and is likely how the device is referred to in customer documentation and data sheets. In the case of APs, the model number provides critical information regarding the regulatory domain that the AP operates in. The model number also indicates the number of radios in the AP and their capabilities. Validations : The hardware type value must be between 6 and 32 characters long. Valid character set : Alphanumeric, special characters except semi-colon, colon and ampersand |
| apName required | string^[a-zA-Z0-9._ -]{1,64}$ Represents the Friendly Name of the access point. The AP Name defaults to the Serial Number. It does not have to be unique. |
| softwareVersion | string Software version number installed on the access point Validations : There is no need for a user to enter this, so there is no need to validate it. Valid character set : Alphanumeric, special characters except semi-colon, colon and ampersand |
| hostSite | string Site to which the access point is associated Validations : The Software version must be between 0 and 64 characters long. Valid character set : Alphanumeric, special characters except semi-colon, colon and ampersand |
| description | string A user entered string describing this AP. Its contents can be completely arbitrary. It can be null or empty. Validations : The description must be between 0 and 255 characters long. |
object or null (FTMLocationInformation) Location information used in 11mc. The presence of this element is advertised in the beacon and client devices are able to request it from the AP. If this element is null, then 11mc will be disabled on the AP regardless of WLAN config. If zSubelement is null then no z-subelement will be present in the LCI. If no CA information is configured on the AP's site and no override is provided, then the AP will not advertise CA in the beacon. | |
| ipAddress | string The IP address of one of the AP wired interfaces. This is the address of the AP on the customer network. Validations : It must be a valid IP Address. |
| ipNetmask | string The IP Netmask of one of the AP wired interfaces. Validations : It must be a valid IP Address. |
| ipGateway | string The IP Gateway address of one of the AP wired interfaces. Validations : It must be a valid IP Address. |
Array of objects (RadioIndividualElement) List of radios in the access point Validations : Not null and non-empty list ofRadioElements | |
| ledStatus | string (LedStatus) Default: "NORMAL" Enum: "OFF" "IDENTITY" "NORMAL" "SOLID" The state the AP LEDs. Can be read or written. Default value is "normal". |
| ledStatusOvr | boolean |
| location | string Location: A user entered string describing the location of the AP. When a client roams to an AP with a different location, Area Notification is triggered. The Area Notification feature is designed to track client locations within pre-defined areas using either the Location Engine or the AP Location field. When the clients change areas, a notification is sent. Location functionality on the AP is useful when access to Extreme Management Center OneView is not available. completely arbitrary. It can be null or empty. Validations : The description must be between 0 and 32 characters long. |
| environment | string (ApEnvironment) Enum: "indoor" "outdoor" "underseat" |
| maintainClientSession | string (Status) Enum: "enabled" "disabled" maintainClientSession: Enable/Disable, maintains client session in the event of a poll failure. Using a Bridged at AP topology, select this option if the AP should remain active when a link loss with the controller occurs. This option is enabled by default. |
| apPersistence | string (Status) Enum: "enabled" "disabled" apPersistence: Enable/Disable, restart service in the absence of controller. Using a Bridged at AP topology, select this option to ensure the AP radios continue providing service when the AP connection to the controller is lost. When enabled, this option allows the AP to start a bridged at AP VNS even in the absence of a controller. |
| captureTimeout | number captureTimeout: Maximum configurable timeout for Real Capture. The Real Capture feature is used to start a real capture server on the AP. Default capture server timeout is set to 300 seconds and the maximum configurable timeout is 1 hour. While the capture session is active, the AP interface operates in promiscuous mode. From the Wireshark GUI, set the capture interface to the IP address of the selected AP, and select null authentication. Once Wireshark connects to the AP, the AP interfaces are listed as available to capture traffic. eth0 is the wired interface, wlan0 is the 5Ghz interface, and wlan1 is the 2.4Ghz interface. You can capture bi-directional traffic on eth0, wifi0, and wifi1. The capture on wifi0 and wifi1 does not include internally generated hardware packets by the capturing AP. The capturing AP does not report its own Beacons, Retransmission, Ack and 11n Block Ack. If this information is needed, perform Real Capture from a second AP that is close by. Make sure both APs are on the same wireless channel. Broadcast an SSID to activate the radios, but do not broadcast the SSID of the AP you are troubleshooting. You do not want the clients to connect to the second capturing AP. Validations : A valid integer value, the range is between 0 and 3600 seconds |
| mcastAssembly | boolean Indicate if multicast assembly is enabled |
| approvedStatus | string (ApprovedStatus) Enum: "APPROVED" "PENDING" approvedStatus: the approved status of the AP |
| addrAssn | boolean Indicate if DHCP is enabled |
Array of objects (AntennaElement) apAntennaModels: The AP antenna models (valid only for AP with external antennas) Validations : None | |
| mgmtVlanId | number |
| mgmtVlanIdOvr | boolean |
| mtuOvr | boolean |
| mtu | number |
| lag | boolean Deprecated |
| lagOvr | boolean Deprecated |
| ge2mode | string (Ge2Mode) Enum: "Backup" "LAG" "Client" "Bridge" |
| ge2modeOvr | boolean |
| usbPower | string (PwrLevel) Enum: "Off" "Auto" |
| usbPowerOvr | boolean |
| psePower | string (PwrLevel) Enum: "Off" "Auto" |
| psePowerOvr | boolean |
| forcePoEPlus | boolean |
| acList | Array of strings <ipv4> (InetAddress) acList: The controller Search List (list of IP addresses) This is not configurable in V1.0, it is set to an empty list. This attribute is read-only Validations : None |
| rootPassword | string RootPassword attribute is NOT used |
| sensorChListOvr | boolean |
| sensorChList | Array of strings List of channels for sensor mode |
| sensorModeOvr | boolean |
| sensorMode | string (SensorScanMode) Enum: "Default" "Locked" "Custom" |
Array of objects (MeshpointOverrideElement) | |
| pollTimeout | integer [ 3 .. 600 ] Default: 3 |
| pollTimeoutOvr | boolean Default: false |
| bandPreference | boolean Deprecated A flag to enable band steering |
Array of objects (InterfaceAssignmentElement) List of WLAN IDs, assigned to the radio. When radioIfListOvr is true, the list can be set. | |
Array of objects (InterfaceAssignmentElement) List of WLAN IDs that are assigned to the wired port. When radioIfListOvr is true, the list can be set. | |
| radioIfListOvr | boolean Default: false WLAN assignment Override |
| cbUser | string Client Bridge user name. Used when radioIfListOvr=true and 802.1x Client Bridge is enabled. |
| cbPassword | string Client Bridge password. Used when radioIfListOvr=true and 802.1x Client Bridge is enabled. The field is write-only. GET operation will always return null for cbPassword. |
| faAuthKey | string^[^\t?`"\\]{0,32}$ Default: "" Fabric Attach authentication key. An empty string indicates that the default value is used. |
| faAuthKeyOvr | boolean Default: false If present and true, use the faAuthKey value. |
object (PeapElement) PEAP element. | |
| peapUsernameOvr | boolean Default: false |
object (PeapElement) PEAP element. | |
| peapPasswordOvr | boolean Default: false |
| cbRssThreshold | integer [ -128 .. -40 ] Default: -70 Client Bridge RSS threshold for reconnecting to root AP |
| cbRssThresholdOvr | boolean Default: false |
object (SmartPollElement) Smart poll element | |
| smartPollOvr | boolean Default: false |
| bandSteeringServiceIds | Array of strings <uuid> List of WLAN IDs with band steering enabled |
Array of objects (ProfileWiredPort) | |
| wiredPortsOvr | boolean Default: false Controls the wired ports settings (i.e. Energy Efficient Ethernet - 802.3az). |
| affinity | string (PreferredAffinity) Default: "Any" Enum: "Any" "Primary" "Backup" |
| affinityOvr | boolean Default: false |
| apLogLevel | string (ApLogLevel) Enum: "Emergencies" "Alerts" "Critical" "Errors" "Warnings" "Notifications" "Informational" "Debugging" |
| apLogLevelOvr | boolean Default: false |
object (Elevation) Elevation | |
| elevationOvr | boolean Default: false Enable override of AP height/uncertainty above floor. When disabled, AP height/uncertainty are derived from floor configuration. When enabled, provide the AP height/uncertainty in the "aboveFloor" parameter. |
| edge | boolean Default: false Enable the Edge Compute environment. |
| edgeOvr | boolean |
| sshEnabled | boolean Default: false This controls whether the AP enables its SSHD server. For release 1.0, SSHD is accessable if it is enabled and there is an unblocked route between the AP wired interface and the administrator's computer that is being used to log into the AP. |
| sshEnabledOvr | boolean Default: false |
| gpsAnchor | boolean Default: false Use this AP as GPS anchor to derive geo-coordinates of other APs on the floor |
| gpsAntennaDistance | number [ 0 .. 100 ] Default: 0 When external GPS antenna is used with GPS dongle, specify distance between GPS antenna and AP in meters. This distance is added to GPS location uncertainty. When internal GPS antenna is used, set antenna distance to 0. Used only for GPS anchor APs. |
{- "iotiBeaconMajor": 0,
- "iotiBeaconMajorOvr": false,
- "iotiBeaconMinor": 0,
- "iotiBeaconMinorOvr": false,
- "iotiBeaconMeasuredRssi": 0,
- "iotiBeaconMeasuredRssiOvr": false,
- "iotiBeaconTxPower": 0,
- "iotiBeaconTxPowerOvr": false,
- "iotEddystoneUrl": "",
- "iotEddystoneUrlOvr": false,
- "iotEddystoneMeasuredRssi": 0,
- "iotEddystoneMeasuredRssiOvr": false,
- "iotEddystoneTxPower": 0,
- "iotEddystoneTxPowerOvr": false,
- "iotAppSupported": "MULTI",
- "iotAntennaModelId": 0
}{- "iotiBeaconMajor": 0,
- "iotiBeaconMajorOvr": false,
- "iotiBeaconMinor": 0,
- "iotiBeaconMinorOvr": false,
- "iotiBeaconMeasuredRssi": 0,
- "iotiBeaconMeasuredRssiOvr": false,
- "iotiBeaconTxPower": 0,
- "iotiBeaconTxPowerOvr": false,
- "iotEddystoneUrl": "",
- "iotEddystoneUrlOvr": false,
- "iotEddystoneMeasuredRssi": 0,
- "iotEddystoneMeasuredRssiOvr": false,
- "iotEddystoneTxPower": 0,
- "iotEddystoneTxPowerOvr": false,
- "iotAppSupported": "MULTI",
- "iotAntennaModelId": 0
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid serial number of the access point that needs to be deleted |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid access point serial number |
| environment | string (ApEnvironment) Enum: "indoor" "outdoor" "underseat" Example: environment=indoor The environment of the configured AP. Options are Indoor or Outdoor. |
{- "antennaTypesList": [
- {
- "modelId": 40976,
- "modelName": "ML-2452-APA2-01 3.17/4.9dBi Omni",
- "modelShortName": "ML-2452-APA2-01",
- "radioBand": 3,
- "selectable": 1
}
], - "antennaSocketList": [
- {
- "id": 0,
- "name": "Radio 1/2 Port 2.4G/5G-1 Antenna Type",
- "radioBandId": 3,
- "group": 1,
- "selectable": 1
}
], - "iotAntennaTypesList": [
- {
- "modelId": 1,
- "modelName": "No Antenna",
- "modelShortName": "NO_ANTENNA",
- "radioBand": 3,
- "selectable": 1
}
]
}| filename required | string Name of the file to be downloaded |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid access point serial number |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid access point serial number |
| deleteAction | boolean |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid access point serial number |
| timeout | integer <int32> |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid serial number of the access point to be rebooted |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid serial number of the access point to be located |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid access point serial number |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}Set the access point state to one of the following: approved, pending, released, foreign
| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid access point serial number |
| ruState | string (ruState) Enum: "approved" "foreign" "pending" "r1backgroundscan" "r2backgroundscan" "released" Example: ruState=approved Contains RuState value: approved, pending, released, foreign |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid access point serial number |
| apImageName | string A non-empty, valid string containing the image name to be used for the upgrade |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string |
[- {
- "macAddress": "D8:84:66:79:E3:02",
- "ipAddress": "10.47.75.132",
- "manufacturer": "Extreme Networks, Inc.",
- "rss": 0,
- "siteId": "eaab6b13-865d-4475-a26f-d3d95b6e0812",
- "accessPointSerialNumber": "1703Y-1411400000",
- "v6UniqueLocalAddress": null,
- "serviceId": "9cfd5161-79b0-4c87-be1c-5568bbf3c44a",
- "dot11nAdvanced": 0,
- "accessPointName": "1703Y-1411400000",
- "receivedRate": 100000000,
- "v6linkLocalAddress": null,
- "capability": 0,
- "status": "ACTIVE",
- "roleId": "4459ee6c-2f76-11e7-93ae-92361f002671",
- "radioId": 20,
- "protocol": null,
- "lastSeen": 1554485524000,
- "v6GlobalAddress": null,
- "dlLostRetriesPackets": 0,
- "transmittedRate": 100000000,
- "dlLostRetriesBytes": 0,
- "inBytes": 3405172422,
- "inPackets": 2432617,
- "outBytes": 58535209,
- "outPackets": 948090,
- "proxied": "Local",
- "dhcpHostName": "AP3916ic-CAM-D8846679E302",
- "osType": "",
- "ipv6Address": [
- "fe80::da84:66ff:fe79:e302"
], - "userName": "",
- "role": "Enterprise User",
- "deviceType": "EXTR2MP-CAM"
}
]| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 |
| duration | string3H|3D|14D Default: "3H" Example: duration=3H |
| widgetList | string Deprecated |
{- "deviceSerialNo": "1740W-2030400000",
- "timeStamp": 1554476614000,
- "channelWidth": [
- "Ch1Width_20MHz: 1"
], - "entitlementStatus": 0,
- "bandAndChannel": {
- "1740W-2030400000.1740W-2030400000/2.radDrmNoDrmCurrentChannel": 16783001,
- "1740W-2030400000.1740W-2030400000/1.radDrmNoDrmCurrentChannel": 16779653
}, - "activeAlerts": [ ],
- "wirelessProtocols": [
- 18
], - "wiredClientCount": 0,
- "hwType": "AP-7612-680B30-WR",
- "deviceHealth": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "qualityMetric": null,
- "currentPowerLevel": {
- "1740W-2030400000.1740W-2030400000/2.radCurrentPower": 4,
- "1740W-2030400000.1740W-2030400000/1.radCurrentPower": 4
}, - "swVersion": "5.9.3.2-002R",
- "ipAddress": "10.47.75.108",
- "location": "DevelopmentLab7",
- "macAddress": "B8:50:01:3B:3E:1C",
- "camIpAddress": null,
- "ethPowerStatus": null,
- "throughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466202074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 1,
- "value": "1"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 382059.37111111113
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 515780151
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Wireless Access Point",
- "name": "Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Extreme IdentiFi Wireless Access Point",
- "name": "Extreme IdentiFi Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 2
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 4
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "rfQuality": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RF Quality",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "unit": "",
- "statistics": [
- {
- "unit": "",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3,
- "value": "3"
}
], - "statName": "Unique RFQI",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization2_4": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 2.4GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 5GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "noisePerRadio": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Noise Per Channel",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": -97,
- "value": "-97"
}
], - "statName": "R1",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "ratioOfCurrentUsersToBand": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Load Per Radio",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "2.4 GHz",
- "name": "2.4 GHz",
- "value": 2
}
]
}
], - "topClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 71.5
}
]
}
], - "worstClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "22:B3:99:9C:87:98",
- "name": "22:B3:99:9C:87:98",
- "value": 37
}
]
}
], - "topClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "baseliningAPRFQI": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RFQI",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "Link Quality",
- "statistics": [
- {
- "unit": "Link Quality",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3.5,
- "value": "3.5"
}
], - "statName": "RFQI Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRss": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RSS",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dBm",
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": -63,
- "value": "-63.0"
}
], - "statName": "Rss Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPTxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Tx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 71500000,
- "value": "71500000.0"
}
], - "statName": "TxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Rx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 13500000,
- "value": "13500000.0"
}
], - "statName": "RxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Retries",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "statistics": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466081773.8772,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Retries Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "apQoE": [
- {
- "reportName": "AP QoE Baseline",
- "reportType": "Distribution",
- "unit": "",
- "listBad": [ ],
- "listAverage": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.4
}
], - "listGood": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.6
}
], - "listExcellent": [ ],
- "enable": 1,
- "fromTimeInMillis": 1554465844581.09,
- "toTimeInMillis": 1554476644581.09,
- "apQoEseries": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465600000,
- "numPoints": 2.379628627405675,
- "value": "2.3796286274056748"
}
], - "statName": "apQoE_Base",
- "type": "number",
- "connectto": "b"
}
], - "clientsQoEdistribution": [
- {
- "id": "Bad",
- "name": "Bad",
- "value": 0,
- "fracttionofTime": 0,
- "fracttionofTimeLower": 25,
- "fracttionofTimeHigher": 100,
- "clients": 0,
- "totalClients": 5,
- "clientPercentage": 0
}
]
}
]
}| apSerialNumber required | string |
[- {
- "switchPort": "string",
- "portDescrition": "string",
- "systemName": "string",
- "systemDescription": "string",
- "managementAddress": "string",
- "switchSerial": "string",
- "manufacturer": "string"
}
]Get AP alarms list
| apSerialNumber required | string |
| startTime | number >= 1 Start time in milliseconds |
| endTime | number >= 1 End time in milliseconds |
| categories | string (ApAlarmCategory) Enum: "Certificate" "ChannelChange" "ChannelUtilization" "ConfigurationChange" "ConfigurationFailure" "PollMonitor" "CrashReport" "ClientInfo" "Cmcx" "Edge" "Esl" "Ethernet" "Discovery" "DCS" "AlarmCleared" "Noise" "Radar" "Reboot" "Reset" "Upgrade" "Miscellaneous" "FabricAttach" "FabricConnectLog" "FabricConnectTrap" "StatusChange" "SmartRF" "Diagnostic" "Security" "Unknown" Example: categories=Certificate Categories list to retrieve. Returns all categories, if empty. |
[- {
- "category": "Certificate",
- "alarmTypes": [
- {
- "id": "HideRadio",
- "severity": "Critical",
- "alarms": [
- {
- "ts": 0,
- "log": "string",
- "pos": 0,
- "apName": "string",
- "apSerial": "1730Y-1007800000"
}
]
}
]
}
]| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 |
| duration | string3H|3D|14D Default: "3H" Example: duration=3H |
{- "deviceSerialNo": "1740W-2030400000",
- "timeStamp": 1554476614000,
- "channelWidth": [
- "Ch1Width_20MHz: 1"
], - "entitlementStatus": 0,
- "bandAndChannel": {
- "1740W-2030400000.1740W-2030400000/2.radDrmNoDrmCurrentChannel": 16783001,
- "1740W-2030400000.1740W-2030400000/1.radDrmNoDrmCurrentChannel": 16779653
}, - "activeAlerts": [ ],
- "wirelessProtocols": [
- 18
], - "wiredClientCount": 0,
- "hwType": "AP-7612-680B30-WR",
- "deviceHealth": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "qualityMetric": null,
- "currentPowerLevel": {
- "1740W-2030400000.1740W-2030400000/2.radCurrentPower": 4,
- "1740W-2030400000.1740W-2030400000/1.radCurrentPower": 4
}, - "swVersion": "5.9.3.2-002R",
- "ipAddress": "10.47.75.108",
- "location": "DevelopmentLab7",
- "macAddress": "B8:50:01:3B:3E:1C",
- "camIpAddress": null,
- "ethPowerStatus": null,
- "throughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466202074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 1,
- "value": "1"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 382059.37111111113
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 515780151
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Wireless Access Point",
- "name": "Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Extreme IdentiFi Wireless Access Point",
- "name": "Extreme IdentiFi Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 2
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 4
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "rfQuality": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RF Quality",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "unit": "",
- "statistics": [
- {
- "unit": "",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3,
- "value": "3"
}
], - "statName": "Unique RFQI",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization2_4": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 2.4GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 5GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "noisePerRadio": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Noise Per Channel",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": -97,
- "value": "-97"
}
], - "statName": "R1",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "ratioOfCurrentUsersToBand": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Load Per Radio",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "2.4 GHz",
- "name": "2.4 GHz",
- "value": 2
}
]
}
], - "topClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 71.5
}
]
}
], - "worstClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "22:B3:99:9C:87:98",
- "name": "22:B3:99:9C:87:98",
- "value": 37
}
]
}
], - "topClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "baseliningAPRFQI": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RFQI",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "Link Quality",
- "statistics": [
- {
- "unit": "Link Quality",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3.5,
- "value": "3.5"
}
], - "statName": "RFQI Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRss": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RSS",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dBm",
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": -63,
- "value": "-63.0"
}
], - "statName": "Rss Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPTxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Tx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 71500000,
- "value": "71500000.0"
}
], - "statName": "TxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Rx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 13500000,
- "value": "13500000.0"
}
], - "statName": "RxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Retries",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "statistics": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466081773.8772,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Retries Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "apQoE": [
- {
- "reportName": "AP QoE Baseline",
- "reportType": "Distribution",
- "unit": "",
- "listBad": [ ],
- "listAverage": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.4
}
], - "listGood": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.6
}
], - "listExcellent": [ ],
- "enable": 1,
- "fromTimeInMillis": 1554465844581.09,
- "toTimeInMillis": 1554476644581.09,
- "apQoEseries": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465600000,
- "numPoints": 2.379628627405675,
- "value": "2.3796286274056748"
}
], - "statName": "apQoE_Base",
- "type": "number",
- "connectto": "b"
}
], - "clientsQoEdistribution": [
- {
- "id": "Bad",
- "name": "Bad",
- "value": 0,
- "fracttionofTime": 0,
- "fracttionofTimeLower": 25,
- "fracttionofTimeHigher": 100,
- "clients": 0,
- "totalClients": 5,
- "clientPercentage": 0
}
]
}
]
}Get AP alarms list
| siteId required | string |
| startTime | number >= 1 Start time in milliseconds |
| endTime | number >= 1 End time in milliseconds |
| categories | string (ApAlarmCategory) Enum: "Certificate" "ChannelChange" "ChannelUtilization" "ConfigurationChange" "ConfigurationFailure" "PollMonitor" "CrashReport" "ClientInfo" "Cmcx" "Edge" "Esl" "Ethernet" "Discovery" "DCS" "AlarmCleared" "Noise" "Radar" "Reboot" "Reset" "Upgrade" "Miscellaneous" "FabricAttach" "FabricConnectLog" "FabricConnectTrap" "StatusChange" "SmartRF" "Diagnostic" "Security" "Unknown" Example: categories=Certificate Categories list to retrieve. Returns all categories, if empty. |
[- {
- "category": "Certificate",
- "alarmTypes": [
- {
- "id": "HideRadio",
- "severity": "Critical",
- "alarms": [
- {
- "ts": 0,
- "log": "string",
- "pos": 0,
- "apName": "string",
- "apSerial": "1730Y-1007800000"
}
]
}
]
}
]| siteId required | string |
A valid Smart RF report request
| duration | string (Duration) Enum: "D_3h" "D_3d" "D_14d" Report duration |
Array of objects (WidgetInfoElement) | |
| band | string (RadioBand) Enum: "Band5" "Band6" "Band24" "BandNONE" |
{- "duration": "D_14d",
- "widgets": [
- {
- "id": "ulDlUsageTimeseries",
- "filters": [
- "Filter_2_4"
]
}
], - "band": "Band5"
}{- "smartRFMitigation": [
- {
- "fromTimeInMillis": 1554474220231.644,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554485020231.644,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:20",
- "name": "02:02:6F:E9:92:20",
- "value": 0
}
]
}
], - "smartRFMitigationHistory": [
- {
- "fromTimeInMillis": 1554474766055.964,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554485566055.964,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554474841814.9873,
- "numPoints": 13,
- "value": "13"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "apPerChannel": [
- {
- "fromTimeInMillis": 1554474220231.644,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554485020231.644,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:20",
- "name": "02:02:6F:E9:92:20",
- "value": 0
}
]
}
], - "apPower": [
- {
- "fromTimeInMillis": 1554474220231.644,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554485020231.644,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:20",
- "name": "02:02:6F:E9:92:20",
- "value": 0
}
]
}
], - "smartRFChannelEnergy": {
- "toTimeInMillis": 12345,
- "fromTimeInMillis": 12345,
- "reportType": "Stack",
- "distributionStats": [
- {
- "id": "D4:63:FE:D9:8F:09",
- "name": "D4:63:FE:D9:8F:09",
- "value": [
- 10,
- 20
], - "labels": [
- "upload",
- "download"
]
}
], - "unit": "bps",
- "reportName": "Top clients by Usage"
}, - "smartRFChannelInspector": [
- {
- "reportType": "Table",
- "tableData": {
- "columnNames": [
- "Status"
], - "rowData": [ ]
}, - "reportName": "Packet Capture Instances"
}
], - "smartRFChannelInspectorOnDemand": [
- {
- "reportType": "Table",
- "tableData": {
- "columnNames": [
- "Status"
], - "rowData": [ ]
}, - "reportName": "Packet Capture Instances"
}
], - "neighborList": [
- {
- "reportType": "Table",
- "tableData": {
- "columnNames": [
- "Status"
], - "rowData": [ ]
}, - "reportName": "Packet Capture Instances"
}
], - "neighborListOnDemand": [
- {
- "reportType": "Table",
- "tableData": {
- "columnNames": [
- "Status"
], - "rowData": [ ]
}, - "reportName": "Packet Capture Instances"
}
]
}| siteId required | string A non-empty, valid Site ID |
| duration | string3H|3D|14D Default: "3H" Example: duration=3H |
| widgetList | string |
[- {
- "deviceSerialNo": "1740W-2030400000",
- "timeStamp": 1554476614000,
- "channelWidth": [
- "Ch1Width_20MHz: 1"
], - "entitlementStatus": 0,
- "bandAndChannel": {
- "1740W-2030400000.1740W-2030400000/2.radDrmNoDrmCurrentChannel": 16783001,
- "1740W-2030400000.1740W-2030400000/1.radDrmNoDrmCurrentChannel": 16779653
}, - "activeAlerts": [ ],
- "wirelessProtocols": [
- 18
], - "wiredClientCount": 0,
- "hwType": "AP-7612-680B30-WR",
- "deviceHealth": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "qualityMetric": null,
- "currentPowerLevel": {
- "1740W-2030400000.1740W-2030400000/2.radCurrentPower": 4,
- "1740W-2030400000.1740W-2030400000/1.radCurrentPower": 4
}, - "swVersion": "5.9.3.2-002R",
- "ipAddress": "10.47.75.108",
- "location": "DevelopmentLab7",
- "macAddress": "B8:50:01:3B:3E:1C",
- "camIpAddress": null,
- "ethPowerStatus": null,
- "throughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466202074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 1,
- "value": "1"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 382059.37111111113
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 515780151
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Wireless Access Point",
- "name": "Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Extreme IdentiFi Wireless Access Point",
- "name": "Extreme IdentiFi Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 2
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 4
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "rfQuality": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RF Quality",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "unit": "",
- "statistics": [
- {
- "unit": "",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3,
- "value": "3"
}
], - "statName": "Unique RFQI",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization2_4": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 2.4GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 5GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "noisePerRadio": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Noise Per Channel",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": -97,
- "value": "-97"
}
], - "statName": "R1",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "ratioOfCurrentUsersToBand": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Load Per Radio",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "2.4 GHz",
- "name": "2.4 GHz",
- "value": 2
}
]
}
], - "topClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 71.5
}
]
}
], - "worstClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "22:B3:99:9C:87:98",
- "name": "22:B3:99:9C:87:98",
- "value": 37
}
]
}
], - "topClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "baseliningAPRFQI": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RFQI",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "Link Quality",
- "statistics": [
- {
- "unit": "Link Quality",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3.5,
- "value": "3.5"
}
], - "statName": "RFQI Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRss": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RSS",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dBm",
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": -63,
- "value": "-63.0"
}
], - "statName": "Rss Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPTxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Tx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 71500000,
- "value": "71500000.0"
}
], - "statName": "TxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Rx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 13500000,
- "value": "13500000.0"
}
], - "statName": "RxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Retries",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "statistics": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466081773.8772,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Retries Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "apQoE": [
- {
- "reportName": "AP QoE Baseline",
- "reportType": "Distribution",
- "unit": "",
- "listBad": [ ],
- "listAverage": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.4
}
], - "listGood": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.6
}
], - "listExcellent": [ ],
- "enable": 1,
- "fromTimeInMillis": 1554465844581.09,
- "toTimeInMillis": 1554476644581.09,
- "apQoEseries": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465600000,
- "numPoints": 2.379628627405675,
- "value": "2.3796286274056748"
}
], - "statName": "apQoE_Base",
- "type": "number",
- "connectto": "b"
}
], - "clientsQoEdistribution": [
- {
- "id": "Bad",
- "name": "Bad",
- "value": 0,
- "fracttionofTime": 0,
- "fracttionofTimeLower": 25,
- "fracttionofTimeHigher": 100,
- "clients": 0,
- "totalClients": 5,
- "clientPercentage": 0
}
]
}
]
}
]| apLogLevel required | string (ApLogLevel) Enum: "Emergencies" "Alerts" "Critical" "Errors" "Warnings" "Notifications" "Informational" "Debugging" |
| apLogLevelOvr | boolean Default: true |
| serialNumbers required | Array of strings (SerialNumber) A list of access point serial numbers |
{- "apLogLevel": "Critical",
- "apLogLevelOvr": false,
- "serialNumbers": [
- "17095522200273",
- "1637Y-1008600000"
]
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 A non-empty, valid access point serial number |
{- "geoloc": "AVAILABLE",
- "afc": "AFC_GRACE_PERIOD",
- "name": "...",
- "pwr": 12345,
- "reqCh": "...",
- "rId": 12345,
- "expire": "...",
- "fallbackCh": "...",
- "opCh": "...",
- "model": "...",
- "reqPwr": 12345,
- "status": "InService",
- "pwrMode": "SP",
- "floorName": "4th floor",
- "coordinates": {
- "latitude": 43.633868800000016,
- "longitude": -79.6164096,
- "ts": 1707223561000,
- "source": "GPS"
}, - "anchorLocSrc": "APP",
- "subgraph": "Subgraph 2",
- "neighbors": 2
}| siteName | string A non-empty, valid site name |
{- "afcStatus": {
- "pending": 12345,
- "available": 12345,
- "grace": 12345
}, - "spectrumMismatch": {
- "reduced": 12345,
- "backup": 12345,
- "radioOff": 12345
}, - "apDetails": [
- {
- "geoloc": "NOT_AVAILABLE",
- "afc": "AFC_GRACE_PERIOD",
- "name": "...",
- "pwr": 12345,
- "reqCh": "...",
- "rId": 12345,
- "expire": "...",
- "fallbackCh": "...",
- "opCh": "...",
- "model": "...",
- "reqPwr": 12345,
- "status": "InService",
- "pwrMode": "LPI",
- "floorName": "4th floor"
}, - {
- "geoloc": "AVAILABLE",
- "afc": "AFC_PENDING",
- "name": "...",
- "pwr": 12345,
- "reqCh": "...",
- "rId": 12345,
- "expire": "...",
- "fallbackCh": "...",
- "opCh": "...",
- "model": "...",
- "reqPwr": 12345,
- "status": "Upgrading",
- "pwrMode": "SP",
- "floorName": "4th floor",
- "coordinates": {
- "latitude": 43.633868800000016,
- "longitude": -79.6164096,
- "ts": 1707223561000,
- "source": "GEO"
}
}
], - "geoLocation": {
- "notAvailable": 12345,
- "available": 12345
}
}Return the optional columns list.
| suggestValues | boolean Default: true Scan for suggested values for columns. |
{- "ipAddress": {
- "dtype": "object",
- "contextVals": [
- "0.0.0.0"
]
}, - "softwareVersion": {
- "dtype": "object",
- "contextVals": [
- ""
]
}
}[- {
- "custId": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "canDelete": true,
- "canEdit": true,
- "serialNumber": "1730Y-1007800000",
- "name": "string",
- "description": "string",
- "managed": true,
- "secure": true,
- "ikev2Psk": "stringst",
- "terminationAddr": "192.168.0.1",
- "bridge": {
- "portId": 1
}, - "termination": {
- "portId": 1,
- "vlanId": 1,
- "vlanIdTagged": true,
- "addr": "192.168.0.1",
- "cidr": 8,
- "gateway": "192.168.0.1"
}
}
]A non-empty, valid ConcentratorElement instance with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumber | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ The globally unique serial number of the device being registered. The serial number is represented as a string. |
| name required | string [ 1 .. 64 ] characters ^[a-zA-Z0-9._ -]{1,64}$ Human-readable name of the concentrator |
| description | string [ 0 .. 255 ] characters Description of the concentrator |
| managed | boolean Indicates if the concentrator is managed by ExtremeCloud IQ Controller. |
| secure | boolean Indicates if IPSec is used to secure tunnelled traffic. |
| ikev2Psk | string [ 8 .. 32 ] characters For secure a connection, it specifies an IKEv2 pre-shared key. For managed concentrators, the IKEv2 pre-shared key is generated automatically and is not configurable. |
| terminationAddr | string <ipv4> The IP address of the concentrator tunnel termination point in a non-managed mode |
object Configuration of a bridged interface for managed concentrators | |
object Configuration of GRE termination L3 interface for managed concentrators |
{- "custId": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "canDelete": true,
- "canEdit": true,
- "serialNumber": "1730Y-1007800000",
- "name": "string",
- "description": "string",
- "managed": true,
- "secure": true,
- "ikev2Psk": "stringst",
- "terminationAddr": "192.168.0.1",
- "bridge": {
- "portId": 1
}, - "termination": {
- "portId": 1,
- "vlanId": 1,
- "vlanIdTagged": true,
- "addr": "192.168.0.1",
- "cidr": 8,
- "gateway": "192.168.0.1"
}
}{- "custId": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "canDelete": true,
- "canEdit": true,
- "serialNumber": "1730Y-1007800000",
- "name": "string",
- "description": "string",
- "managed": true,
- "secure": true,
- "ikev2Psk": "stringst",
- "terminationAddr": "192.168.0.1",
- "bridge": {
- "portId": 1
}, - "termination": {
- "portId": 1,
- "vlanId": 1,
- "vlanIdTagged": true,
- "addr": "192.168.0.1",
- "cidr": 8,
- "gateway": "192.168.0.1"
}
}| id required | string <uuid> UUID of existing concentrator |
{- "custId": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "canDelete": true,
- "canEdit": true,
- "serialNumber": "1730Y-1007800000",
- "name": "string",
- "description": "string",
- "managed": true,
- "secure": true,
- "ikev2Psk": "stringst",
- "terminationAddr": "192.168.0.1",
- "bridge": {
- "portId": 1
}, - "termination": {
- "portId": 1,
- "vlanId": 1,
- "vlanIdTagged": true,
- "addr": "192.168.0.1",
- "cidr": 8,
- "gateway": "192.168.0.1"
}
}| id required | string <uuid> UUID of existing concentrator |
A non-empty, valid ConcentratorElement instance with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| serialNumber | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ The globally unique serial number of the device being registered. The serial number is represented as a string. |
| name required | string [ 1 .. 64 ] characters ^[a-zA-Z0-9._ -]{1,64}$ Human-readable name of the concentrator |
| description | string [ 0 .. 255 ] characters Description of the concentrator |
| managed | boolean Indicates if the concentrator is managed by ExtremeCloud IQ Controller. |
| secure | boolean Indicates if IPSec is used to secure tunnelled traffic. |
| ikev2Psk | string [ 8 .. 32 ] characters For secure a connection, it specifies an IKEv2 pre-shared key. For managed concentrators, the IKEv2 pre-shared key is generated automatically and is not configurable. |
| terminationAddr | string <ipv4> The IP address of the concentrator tunnel termination point in a non-managed mode |
object Configuration of a bridged interface for managed concentrators | |
object Configuration of GRE termination L3 interface for managed concentrators |
{- "custId": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "canDelete": true,
- "canEdit": true,
- "serialNumber": "1730Y-1007800000",
- "name": "string",
- "description": "string",
- "managed": true,
- "secure": true,
- "ikev2Psk": "stringst",
- "terminationAddr": "192.168.0.1",
- "bridge": {
- "portId": 1
}, - "termination": {
- "portId": 1,
- "vlanId": 1,
- "vlanIdTagged": true,
- "addr": "192.168.0.1",
- "cidr": 8,
- "gateway": "192.168.0.1"
}
}{- "custId": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "canDelete": true,
- "canEdit": true,
- "serialNumber": "1730Y-1007800000",
- "name": "string",
- "description": "string",
- "managed": true,
- "secure": true,
- "ikev2Psk": "stringst",
- "terminationAddr": "192.168.0.1",
- "bridge": {
- "portId": 1
}, - "termination": {
- "portId": 1,
- "vlanId": 1,
- "vlanIdTagged": true,
- "addr": "192.168.0.1",
- "cidr": 8,
- "gateway": "192.168.0.1"
}
}| id required | string <uuid> UUID of existing concentrator |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}{- "custId": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "canDelete": true,
- "canEdit": true,
- "serialNumber": "1730Y-1007800000",
- "name": "string",
- "description": "string",
- "managed": true,
- "secure": true,
- "ikev2Psk": "stringst",
- "terminationAddr": "192.168.0.1",
- "bridge": {
- "portId": 1
}, - "termination": {
- "portId": 1,
- "vlanId": 1,
- "vlanIdTagged": true,
- "addr": "192.168.0.1",
- "cidr": 8,
- "gateway": "192.168.0.1"
}
}A non-empty, valid ConcentratorOnboardingElement instance with the configured parameters
| serialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ The globally unique serial number of the device being registered. The serial number is represented as a string. |
{- "serialNumber": "1730Y-1007800000"
}{- "serialNumber": "1730Y-1007800000"
}[- {
- "userId": "admin",
- "adminRole": "FULL",
- "enabled": false,
- "accountState": "ENABLED",
- "passwordExpiry": 180,
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}, - "properties": {
- "showWizard": "false",
- "theme": "\"light\""
}, - "idleTimeout": 604800
}
]The Administrator instance to register. The Administrator instance must have the mandatory attributes like user ID. It can also have optional attributes.
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| userId required | string [ 1 .. 32 ] characters [A-Za-z0-9_-]+ Represents the administrator user ID. |
| adminRole required | string (Role) Enum: "FULL" "READ_ONLY" The role assigned to the user |
| enabled | boolean |
| password required | string The password for the user account. It is a write-only property and is never displayed in the GUI. Validations : The password must be a Not null and non-empty stringbetween 8 to 24 characters long. Valid character set : Alphanumeric and special characters, NO blanks or CR/LF |
| securityQuestion | string The security question for the user account to help retrieve the password Validations : The security question must be a Not null and non-empty string between 1 and 255 characters long. Valid character set : Alphanumeric, special characters except semi-colon, colon and ampersand |
| securityAnswer | string The security answer for the security question Validations : The security answer must be a Not null and non-empty string between 1 and 255 characters long. Validcharacter set : Alphanumeric, special characters except semi-colon, colon and ampersand |
| accountState required | string (AccountState) Enum: "DISABLED" "ENABLED" "NOT_ACTIVATED" The status of the administrator account. Administrator accounts can be disabled without deleting the account. For example, you can temporarily disable an account when the owner goes on vacation. The default for all accounts is true (enabled). This is an advanced option and does not need to be prominent in the application user interface. [OPTIONAL]. |
object | |
| idleTimeout | number The idle timeout (in seconds) for this administrator |
object A map containing the name and corresponding access level |
{- "userId": "admin",
- "adminRole": "FULL",
- "enabled": false,
- "accountState": "ENABLED",
- "passwordExpiry": 180,
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}, - "properties": {
- "showWizard": "false",
- "theme": "\"light\""
}, - "idleTimeout": 604800
}{- "userId": "admin",
- "adminRole": "FULL",
- "enabled": false,
- "accountState": "ENABLED",
- "passwordExpiry": 180,
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}, - "properties": {
- "showWizard": "false",
- "theme": "\"light\""
}, - "idleTimeout": 604800
}New administrator password
| userId required | string Represents an administrator user ID. It must be unique across all of Extreme Online. Validations : The user ID must be a Not null and non-empty string between 1 and 128 characters long. |
| password required | string Represents the password for the user account. It is a write only property and is never displayed in the user interface. Validations : The password must be a Not null and non-empty string between 8 to 32 characters long, NO blanks or CR/LF. |
{- "userId": "adminUserId",
- "password": "adminPassword"
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| userId required | string A non-empty, valid administrator user ID |
{- "userId": "admin",
- "adminRole": "FULL",
- "enabled": false,
- "accountState": "ENABLED",
- "passwordExpiry": 180,
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}, - "properties": {
- "showWizard": "false",
- "theme": "\"light\""
}, - "idleTimeout": 604800
}| userId required | string |
The Administrator instance to be updated. The Administrator instance must have the mandatory attributes like user ID. It can also have optional attributes.
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| userId | string The administrator user ID, which must be an email address and must be unique across all of Extreme Online. Validations : The user ID must be not null and non-empty string(email ID) between 1 and 128 characters long. |
| adminRole | string (Role) Enum: "FULL" "READ_ONLY" The role assigned to the user: FULL, READ_ONLY |
| securityQuestion | string The security question for the user account to help retrieve the password Validations : string between 1 and 255 characters long. |
| accountState | string (AccountState) Enum: "DISABLED" "ENABLED" "NOT_ACTIVATED" Administrator accounts can be disabled without deleting them. This is useful if the account has to be suspended (for example the owner goes on vacation). The default for all accounts is true (enabled). This is an advanced option and does not need to be prominent in the application user interface. |
| idleTimeout | number The idle timeout (in seconds) for the administrator |
object | |
object A map containing name and the corresponding access level |
{- "userId": "adminUser",
- "adminRole": "FULL",
- "securityQuestion": "Admin secutiry question",
- "accountState": "ENABLED",
- "idleTimeout": 12345,
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}, - "properties": {
- "property1": "...",
- "property2": "..."
}, - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "userId": "admin",
- "adminRole": "FULL",
- "enabled": false,
- "accountState": "ENABLED",
- "passwordExpiry": 180,
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}, - "properties": {
- "showWizard": "false",
- "theme": "\"light\""
}, - "idleTimeout": 604800
}| userId required | string A non-empty, valid administrator user ID |
{- "userId": "admin",
- "adminRole": "FULL",
- "enabled": false,
- "accountState": "ENABLED",
- "passwordExpiry": 180,
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}, - "properties": {
- "showWizard": "false",
- "theme": "\"light\""
}, - "idleTimeout": 604800
}| userId required | string |
An Administrator instance to update. The Administrator instance must have the mandatory attributes like user ID. It can also have optional attributes.
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| userId | string The administrator user ID, which must be unique across all of Extreme Online. Validations : The user ID must be not null and non-empty stringbetween 1 and 128 characters long. |
| idleTimeout | number The idle timeout (in seconds) for this administrator |
{- "userId": "adminUserId",
- "idleTimeout": 12345,
- "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "userId": "admin",
- "adminRole": "FULL",
- "enabled": false,
- "accountState": "ENABLED",
- "passwordExpiry": 180,
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}, - "properties": {
- "showWizard": "false",
- "theme": "\"light\""
}, - "idleTimeout": 604800
}A RefreshTokenElement instance to send. The RefreshTokenElement instance must have the mandatory attributes like userId, refreshToken, and grantType (must be refresh_token). It can also have optional attributes.
| grantType required | string The Oauth2 authorization grant type of password. The value of grantType must be password. Validations : Not null and non-empty string. |
| refreshToken required | string The refresh token for the user account. It is a write-only property, which is not displayed in the user inferface. Validations : The refresh token must be a Not null and non-empty string. |
| scope | string The scope of the access token. This is an optional parameter. |
{- "grantType": "refresh_token",
- "refreshToken": "refreshToken",
- "scope": "..."
}{- "access_token": "eyJraWQiOiIxODIzRS1DQzJDMiIsInR5cCI6IkpXVCIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiJVbmRlZmluZWQ6MTgyM0UtQ0MyQzIiLCJpc3MiOiJYQ0EuMTgyM0UtQ0MyQzIiLCJleHRyZW1lX3JvbGUiOiJGVUxMIiwiZXhwIjoxNTU0MzI0MDg2LCJqdGkiOiJhZG1pbiJ9.1gsj0gaT7EQb5y9fd3ABS_w_TY2SQ6_WhjFMbXix0j8bJrXWHGF8UWzrKhOt3MypR7o_tZ_SjVsA6jAU_pioGu25rmXp7HnjMezS2p9aiNmyqsefS_MKkfu_TtZcmS1TSklM9DaT1x4LUQFJ3wikMfimhcCe8L-2SHxRY-DdpYkQ9uvsQzzxBRC_wwJB5rHF8uVw1HCu36ZPeFIg5dML7TQjGZYo4xX4_Gc3zifUlB-p3VghILIT06M8Cf9H7O22qFjPvWVrGgYfBex5k-G2eJFvWQckjuKxkvWiBm7tBFfWxRQOP0khu11Ue97n41XtGtigoLWTx7hBmelKyYqmNQ",
- "token_type": "Bearer",
- "expires_in": 7200,
- "idle_timeout": 604800,
- "refresh_token": "1eb40de0308d583e4714c78e133e5a4e",
- "adminRole": "FULL",
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}
}The RequestTokenElement instance to login. The RequestTokenElement instance must have the mandatory attributes like userId, password, and grantType (must be password). It can also have optional attributes.
| grantType required | string The Oauth2 authorization grant type of password. The value of grantType must be password. Validations : Not null and non-empty string. |
| userId required | string The administrator user ID. It must be unique across all of Extreme Online. Validations : Not null and non-empty string. |
| password required | string The password for the user account. It is a write-only property, which is not displayed in the user interface. Validations : The password must be a Not null and non-empty string between 8 to 32 characters long, NO blanks or CR/LF. |
| scope | string The scope of the access token. This is an optional parameter. |
| exp | integer The access token expiration time in seconds. This is an optional parameter. It overwrites the default access token expiration time of 7200 seconds. Validations : The value must be a positive number between 60 and 86400 (seconds). |
{- "grantType": "password",
- "userId": "adminUserId",
- "password": "adminPassword",
- "scope": "..."
}{- "access_token": "eyJraWQiOiIxODIzRS1DQzJDMiIsInR5cCI6IkpXVCIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiJVbmRlZmluZWQ6MTgyM0UtQ0MyQzIiLCJpc3MiOiJYQ0EuMTgyM0UtQ0MyQzIiLCJleHRyZW1lX3JvbGUiOiJGVUxMIiwiZXhwIjoxNTU0MzI0MDg2LCJqdGkiOiJhZG1pbiJ9.1gsj0gaT7EQb5y9fd3ABS_w_TY2SQ6_WhjFMbXix0j8bJrXWHGF8UWzrKhOt3MypR7o_tZ_SjVsA6jAU_pioGu25rmXp7HnjMezS2p9aiNmyqsefS_MKkfu_TtZcmS1TSklM9DaT1x4LUQFJ3wikMfimhcCe8L-2SHxRY-DdpYkQ9uvsQzzxBRC_wwJB5rHF8uVw1HCu36ZPeFIg5dML7TQjGZYo4xX4_Gc3zifUlB-p3VghILIT06M8Cf9H7O22qFjPvWVrGgYfBex5k-G2eJFvWQckjuKxkvWiBm7tBFfWxRQOP0khu11Ue97n41XtGtigoLWTx7hBmelKyYqmNQ",
- "token_type": "Bearer",
- "expires_in": 7200,
- "idle_timeout": 604800,
- "refresh_token": "1eb40de0308d583e4714c78e133e5a4e",
- "adminRole": "FULL",
- "scopes": {
- "site": "RO",
- "network": "RW",
- "deviceAp": "NA",
- "deviceSwitch": "RO",
- "eGuest": "RO",
- "adoption": "RO",
- "troubleshoot": "RO",
- "onboardAaa": "RO",
- "onboardCp": "RO",
- "onboardGroupsAndRules": "RO",
- "onboardGuestCp": "RO",
- "platform": "RO",
- "account": "RO",
- "application": "RO",
- "license": "RO",
- "cliSupport": "RW"
}
}| token required | string Access token to be deleted |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| token required | string Contains access token information for the user who is requesting external rest endpoints. Two types of tokens are present: a fixed access token that is generally used by ExtremeCloud components, and a dynamic access token that is used by a user accessing information from the ExtremeCloud IQ Controller GUI applications. |
| tokenTypeHint required | string Contains token type hint information. Example: ExtremeAI |
| requestUrl required | string Contains rest endpoint information. Example: https://extrportal.test.online.extremenetworks.com/integration/8.0/customerSite/byExternalIds?externalCustomerId=Tenant-1&externalLocationId=Site-1 |
| requestMethod required | string Contains one http verb (GET, POST, PUT, DELETE) Example: GET |
{- "active": true,
- "errorCode": 200,
- "customerId": "External customer information."
}A valid AdspProfileElement instance
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string |
| svrAddr | Array of strings List of server addresses |
{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "svrAddr": [
- "10.234.156.248"
]
}{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "svrAddr": [
- "10.234.156.248"
]
}{- "SA201-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf09312",
- "AP7562-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf0930c",
- "AP3915i-PR-Test": "bed07288-4914-11e9-b6fc-000c29a7fe8f"
}| adspId required | string A non-empty, valid ADSP ID |
{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "svrAddr": [
- "10.234.156.248"
]
}| adspId required | string A non-empty, valid AirDefense profile ID |
A valid ADSP profile with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string |
| svrAddr | Array of strings List of server addresses |
{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "svrAddr": [
- "10.234.156.248"
]
}{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "svrAddr": [
- "10.234.156.248"
]
}| adspId required | string A non-empty, valid AirDefense ID |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}[- {
- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}
]A valid AdspProfileV4Element instance
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string |
Array of objects |
{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}{- "SA201-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf09312",
- "AP7562-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf0930c",
- "AP3915i-PR-Test": "bed07288-4914-11e9-b6fc-000c29a7fe8f"
}| adspId required | string A non-empty, valid ADSP ID |
{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}| adspId required | string A non-empty, valid AirDefense profile ID |
A valid ADSP profile with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string |
Array of objects |
{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}| adspId required | string A non-empty, valid Air Defense ID |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}[- {
- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}
]A valid AdspProfileV4Element instance
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string |
Array of objects |
{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}{- "SA201-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf09312",
- "AP7562-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf0930c",
- "AP3915i-PR-Test": "bed07288-4914-11e9-b6fc-000c29a7fe8f"
}| adspId required | string A non-empty, valid ADSP ID |
{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}| adspId required | string A non-empty, valid AirDefense profile ID |
A valid ADSP profile with the configured parameters.
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string |
Array of objects |
{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}{- "custId": null,
- "id": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "canDelete": false,
- "canEdit": true,
- "name": "ADSP Container",
- "servers": [
- {
- "addr": "10.234.156.248",
- "port": 443
}
]
}| adspId required | string A non-empty, valid AirDefense ID |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}A valid AnalyticsProfileElement instance
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string |
| destAddr | string |
| reportFreq | number |
{- "custId": null,
- "id": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "canDelete": false,
- "canEdit": true,
- "name": "test",
- "destAddr": "11.12.12.3",
- "reportFreq": 73
}{- "custId": null,
- "id": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "canDelete": false,
- "canEdit": true,
- "name": "test",
- "destAddr": "11.12.12.3",
- "reportFreq": 73
}{- "SA201-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf09312",
- "AP7562-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf0930c",
- "AP3915i-PR-Test": "bed07288-4914-11e9-b6fc-000c29a7fe8f"
}| analyticsProfileId required | string A non-empty, valid Analytics ID |
{- "custId": null,
- "id": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "canDelete": false,
- "canEdit": true,
- "name": "test",
- "destAddr": "11.12.12.3",
- "reportFreq": 73
}| analyticsProfileId required | string A non-empty, valid Analytics profile ID |
A valid Analytics profile with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string |
| destAddr | string |
| reportFreq | number |
{- "custId": null,
- "id": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "canDelete": false,
- "canEdit": true,
- "name": "test",
- "destAddr": "11.12.12.3",
- "reportFreq": 73
}{- "custId": null,
- "id": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "canDelete": false,
- "canEdit": true,
- "name": "test",
- "destAddr": "11.12.12.3",
- "reportFreq": 73
}| analyticsProfileId required | string A non-empty, valid Analytics ID |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| endTime | number >= 1 End time in milliseconds |
| startTime | number >= 1 Start time in milliseconds |
[- {
- "userId": "...",
- "transactionId": "...",
- "ipAddress": "...",
- "timestamp": 12345,
- "eventType": "...",
- "description": "...",
- "context": "...",
- "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}
][- {
- "custId": null,
- "id": "495f8cf7-30a1-46cf-b8c8-90eeb6278c2a",
- "canDelete": false,
- "canEdit": true,
- "cosName": "Role_46_COS",
- "cosQos": {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "priority": "notApplicable",
- "tosDscp": 0,
- "mask": 0,
- "useLegacyMarking": null
}, - "inboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "outboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "transmitQueue": 0,
- "predefined": false
}
]A valid PolicyClassOfServiceElement instance
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| cosName | string The unique name of the CoS. This is a mandatory attribute. Validations : The Cos name must be a Not null and non-empty string between 0 and 255 characters long. Valid character set : Alphanumeric, special characters except semi-colon, colon and ampersand |
object (PolicyQoSMarkingElement) The layer 2 and layer 3 markings to assign to a frame that is subject to this CoS. The member cannot be null, but it is possible to set the individual members of cosQoS such that frames subject to this CoS are not remarked. Implementation Note: This should be the actual PolicyQoSMarkingElement not a reference to one of these objects. PolicyQosMarkingElement objects are never processed separately from the class/object in which they are contained. Validations : Not null and non-empty . | |
| inboundRateLimiterId | string The inbound rate limiter to apply to traffic assigned to this CoS. Set inboundLimit to null to assign no rate limiter to inbound traffic. Inbound traffic is traffic from the station entering the network at an edge network element such as an AP. Implementation Note: This is the UUID of PolicyRateLimiterElement
|
| outboundRateLimiterId | string The outbound rate limiter to apply to traffic assigned to this CoS. Set outboundLimit to null to assign no rate limiter to outbound traffic. Outbound traffic is traffic from the network heading out toward the station through an edge network element such as an AP. Implementation Note: This is the UUID of PolicyRateLimiterElement
|
| transmitQueue | number |
| predefined | boolean |
{- "custId": null,
- "id": "495f8cf7-30a1-46cf-b8c8-90eeb6278c2a",
- "canDelete": false,
- "canEdit": true,
- "cosName": "Role_46_COS",
- "cosQos": {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "priority": "notApplicable",
- "tosDscp": 0,
- "mask": 0,
- "useLegacyMarking": null
}, - "inboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "outboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "transmitQueue": 0,
- "predefined": false
}{- "custId": null,
- "id": "495f8cf7-30a1-46cf-b8c8-90eeb6278c2a",
- "canDelete": false,
- "canEdit": true,
- "cosName": "Role_46_COS",
- "cosQos": {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "priority": "notApplicable",
- "tosDscp": 0,
- "mask": 0,
- "useLegacyMarking": null
}, - "inboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "outboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "transmitQueue": 0,
- "predefined": false
}{- "custId": null,
- "id": "495f8cf7-30a1-46cf-b8c8-90eeb6278c2a",
- "canDelete": false,
- "canEdit": true,
- "cosName": "Role_46_COS",
- "cosQos": {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "priority": "notApplicable",
- "tosDscp": 0,
- "mask": 0,
- "useLegacyMarking": null
}, - "inboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "outboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "transmitQueue": 0,
- "predefined": false
}| cosId required | string A non-empty, valid CoS ID |
{- "custId": null,
- "id": "495f8cf7-30a1-46cf-b8c8-90eeb6278c2a",
- "canDelete": false,
- "canEdit": true,
- "cosName": "Role_46_COS",
- "cosQos": {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "priority": "notApplicable",
- "tosDscp": 0,
- "mask": 0,
- "useLegacyMarking": null
}, - "inboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "outboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "transmitQueue": 0,
- "predefined": false
}| cosId required | string A non-empty, valid CoS ID |
A valid CoS with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| cosName | string The unique name of the CoS. This is a mandatory attribute. Validations : The Cos name must be a Not null and non-empty string between 0 and 255 characters long. Valid character set : Alphanumeric, special characters except semi-colon, colon and ampersand |
object (PolicyQoSMarkingElement) The layer 2 and layer 3 markings to assign to a frame that is subject to this CoS. The member cannot be null, but it is possible to set the individual members of cosQoS such that frames subject to this CoS are not remarked. Implementation Note: This should be the actual PolicyQoSMarkingElement not a reference to one of these objects. PolicyQosMarkingElement objects are never processed separately from the class/object in which they are contained. Validations : Not null and non-empty . | |
| inboundRateLimiterId | string The inbound rate limiter to apply to traffic assigned to this CoS. Set inboundLimit to null to assign no rate limiter to inbound traffic. Inbound traffic is traffic from the station entering the network at an edge network element such as an AP. Implementation Note: This is the UUID of PolicyRateLimiterElement
|
| outboundRateLimiterId | string The outbound rate limiter to apply to traffic assigned to this CoS. Set outboundLimit to null to assign no rate limiter to outbound traffic. Outbound traffic is traffic from the network heading out toward the station through an edge network element such as an AP. Implementation Note: This is the UUID of PolicyRateLimiterElement
|
| transmitQueue | number |
| predefined | boolean |
{- "custId": null,
- "id": "495f8cf7-30a1-46cf-b8c8-90eeb6278c2a",
- "canDelete": false,
- "canEdit": true,
- "cosName": "Role_46_COS",
- "cosQos": {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "priority": "notApplicable",
- "tosDscp": 0,
- "mask": 0,
- "useLegacyMarking": null
}, - "inboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "outboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "transmitQueue": 0,
- "predefined": false
}{- "custId": null,
- "id": "495f8cf7-30a1-46cf-b8c8-90eeb6278c2a",
- "canDelete": false,
- "canEdit": true,
- "cosName": "Role_46_COS",
- "cosQos": {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "priority": "notApplicable",
- "tosDscp": 0,
- "mask": 0,
- "useLegacyMarking": null
}, - "inboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "outboundRateLimiterId": "117dd0fe-4599-11e9-97b3-000c29a7fe8f",
- "transmitQueue": 0,
- "predefined": false
}| cosId required | string A non-empty, valid CoS ID |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| hwType required | string Hardware type |
[- {
- "custId": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "canDelete": true,
- "canEdit": true,
- "imagename": "string",
- "url": "string",
- "imageSize": 0,
- "deviceVersion": "string",
- "hardwareType": "string",
- "assetType": "string",
- "app": "string",
- "appVersion": "string"
}
]{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "groups": [
- {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "appGroupId": 1,
- "appGroupShortName": "Advertising",
- "appGroupLongName": "Advertising"
}
], - "dpiAppElements": [
- {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "appId": -1,
- "appGroupId": 30,
- "appDisplayId": 1,
- "appName": "163.com",
- "pattern": "",
- "predefined": true,
- "ipoque": false
}
]
}| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
Array of objects (DpiApplicationElement) A list of DPI application elements. Validations : Not null |
{- "dpiAppElements": [
- {
- "appId": 12345,
- "appGroupId": 12345,
- "appDisplayId": 12345,
- "appName": "...",
- "pattern": "...",
- "predefined": true,
- "ipoque": true,
- "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}, - {
- "appId": 12345,
- "appGroupId": 12345,
- "appDisplayId": 12345,
- "appName": "...",
- "pattern": "...",
- "predefined": true,
- "ipoque": true,
- "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}
], - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}{- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "groups": [
- {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "appGroupId": 1,
- "appGroupShortName": "Advertising",
- "appGroupLongName": "Advertising"
}
], - "dpiAppElements": [
- {
- "custId": null,
- "id": null,
- "canDelete": null,
- "canEdit": null,
- "appId": -1,
- "appGroupId": 30,
- "appDisplayId": 1,
- "appName": "163.com",
- "pattern": "",
- "predefined": true,
- "ipoque": false
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 Valid access point serial number |
{- "apSerialNo": "1740W-2030400000",
- "entityStatus": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "controllerApTunnelStatus": [
- {
- "addr": "string",
- "status": "Normal",
- "configMtu": 0,
- "configMtuTunnelStatus": "Normal",
- "apLearnedMtu": 0,
- "internalManagementTunnelStatus": "Normal",
- "tunnel": "Active"
}
], - "apVlanStatus": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "tunnelStatus": "Normal"
}
]
}| siteId required | string A non-empty, valid Site ID |
{- "id": "eaab6b13-865d-4475-a26f-d3d95b6e0812",
- "entityStatus": {
- "operationalStatus": "InService",
- "troubles": [ ]
}
}| switchSerialNumber required | string |
{- "tenantId": "esetechtrial.com:11.12.12.2",
- "serialNo": "1733N-42224",
- "entityStatus": {
- "operationalStatus": "InService"
}, - "comments": "Stats Upload"
}| siteId required | string A non-empty, valid site ID |
[- {
- "apSerialNo": "1740W-2030400000",
- "entityStatus": {
- "operationalStatus": "InService",
- "troubles": [ ]
}
}
]| siteName | string A non-empty, valid site name |
{- "country": "UNITED_STATES",
- "reqPending": 12345,
- "reqRetries": 12345,
- "siteStats": [
- {
- "retries": 12345,
- "end": "...",
- "start": "...",
- "errors": 12345,
- "success": 12345,
- "avgRespTime": 12345,
- "apCount": 12345,
- "site": "..."
}, - {
- "retries": 12345,
- "end": "...",
- "start": "...",
- "errors": 12345,
- "success": 12345,
- "avgRespTime": 12345,
- "apCount": 12345,
- "site": "..."
}
], - "reqSuccess": 12345,
- "reqRefreshed": 12345,
- "avgRespTime": 12345,
- "reqErrors": 12345,
- "state": "Unreachable"
}[- {
- "country": "UNITED_STATES",
- "reqPending": 12345,
- "reqRetries": 12345,
- "siteStats": [
- {
- "retries": 12345,
- "end": "...",
- "start": "...",
- "errors": 12345,
- "success": 12345,
- "avgRespTime": 12345,
- "apCount": 12345,
- "site": "..."
}, - {
- "retries": 12345,
- "end": "...",
- "start": "...",
- "errors": 12345,
- "success": 12345,
- "avgRespTime": 12345,
- "apCount": 12345,
- "site": "..."
}
], - "reqSuccess": 12345,
- "reqRefreshed": 12345,
- "avgRespTime": 12345,
- "reqErrors": 12345,
- "state": "Unreachable"
}
]A valid EslProfileElement instance
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string^[a-zA-Z0-9._ -]{1,64}$ |
| port | integer [ 1 .. 65535 ] Default: 7354 |
| fqdn | string Target address (IPv4 or FQDN) |
{- "custId": null,
- "id": "6a87317e-687e-11ee-a487-000c29a71485",
- "canDelete": false,
- "canEdit": true,
- "name": "ESL1",
- "port": 123,
- "fqdn": "www.testserv.com"
}{- "custId": null,
- "id": "6a87317e-687e-11ee-a487-000c29a71485",
- "canDelete": false,
- "canEdit": true,
- "name": "ESL1",
- "port": 123,
- "fqdn": "www.testserv.com"
}| eslProfileId required | string <uuid> A non-empty, valid ESL ID |
{- "custId": null,
- "id": "6a87317e-687e-11ee-a487-000c29a71485",
- "canDelete": false,
- "canEdit": true,
- "name": "ESL1",
- "port": 123,
- "fqdn": "www.testserv.com"
}| eslProfileId required | string <uuid> A non-empty, valid ESL profile ID |
A valid EslProfileElement with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string^[a-zA-Z0-9._ -]{1,64}$ |
| port | integer [ 1 .. 65535 ] Default: 7354 |
| fqdn | string Target address (IPv4 or FQDN) |
{- "custId": null,
- "id": "6a87317e-687e-11ee-a487-000c29a71485",
- "canDelete": false,
- "canEdit": true,
- "name": "ESL1",
- "port": 123,
- "fqdn": "www.testserv.com"
}{- "custId": null,
- "id": "6a87317e-687e-11ee-a487-000c29a71485",
- "canDelete": false,
- "canEdit": true,
- "name": "ESL1",
- "port": 123,
- "fqdn": "www.testserv.com"
}| eslProfileId required | string <uuid> A non-empty, valid ESL Profile ID |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}[- {
- "app_supported": "SINGLE",
- "custId": null,
- "id": "00000000-0000-0000-0000-000000000000",
- "canDelete": true,
- "canEdit": true,
- "name": "",
- "appId": "iBeaconAdvertisement",
- "iBeaconAdvertisement": {
- "interval": 100,
- "major": 0,
- "minor": 0,
- "uuid": "00000000-0000-0000-0000-000000000000",
- "measuredRssi": -47
}, - "iBeaconScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100,
- "uuid": "00000000-0000-0000-0000-000000000000"
}, - "threadGateway": {
- "shortPANId": "5964",
- "extPANId": "726991727DD89911",
- "masterKey": "F3AB92FDE5758495111177870437E1C3",
- "networkName": "",
- "commCredentials": "THREADNETWORK",
- "channel": 25,
- "whiteList": [ ]
}, - "eddystoneAdvertisement": {
- "url": "",
- "interval": 100,
- "measuredRssi": -5
}, - "eddystoneScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100
}, - "genericScan": {
- "destAddr": "8.8.8.8",
- "destPort": 12345,
- "interval": 10240,
- "window": 10240,
- "minRSS": -60,
- "companyId": 0
}
}
]A valid IotProfile instance with attributes to be registered
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string Represents the Friendly Name of the access point. The AP Name defaults to the Serial Number. It does not have to be unique. Validations : The access point name must be between 1 and 64 characters long. Valid character set : Alphanumeric and .-_spacecharacters |
| appId required | string (IoTApplicationId) Enum: "iBeaconAdvertisement" "iBeaconScan" "eddystoneAdvertisement" "eddystoneScan" "threadGateway" "genericScan" |
object (IoTProfileiBeaconAdvertisementElement) | |
object (IoTProfileiBeaconScanElement) | |
object (IoTProfileThreadGatewayElement) | |
object (IoTProfileEddystoneAdvertisementElement) | |
object (IoTProfileEddystoneScanElement) | |
object (IoTProfileGenericScanElement) Configure the APs to scan and report on generic BLE beacons |
{- "custId": null,
- "id": "00000000-0000-0000-0000-000000000000",
- "canDelete": true,
- "canEdit": true,
- "name": "",
- "appId": "iBeaconAdvertisement",
- "iBeaconAdvertisement": {
- "interval": 100,
- "major": 0,
- "minor": 0,
- "uuid": "00000000-0000-0000-0000-000000000000",
- "measuredRssi": -47
}, - "iBeaconScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100,
- "uuid": "00000000-0000-0000-0000-000000000000"
}, - "threadGateway": {
- "shortPANId": "5964",
- "extPANId": "726991727DD89911",
- "masterKey": "F3AB92FDE5758495111177870437E1C3",
- "networkName": "",
- "commCredentials": "THREADNETWORK",
- "channel": 25,
- "whiteList": [ ]
}, - "eddystoneAdvertisement": {
- "url": "",
- "interval": 100,
- "measuredRssi": -5
}, - "eddystoneScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100
}, - "genericScan": {
- "destAddr": "8.8.8.8",
- "destPort": 12345,
- "interval": 10240,
- "window": 10240,
- "minRSS": -60,
- "companyId": 0
}, - "app_supported": "SINGLE"
}{- "custId": null,
- "id": "00000000-0000-0000-0000-000000000000",
- "canDelete": true,
- "canEdit": true,
- "name": "",
- "appId": "iBeaconAdvertisement",
- "iBeaconAdvertisement": {
- "interval": 100,
- "major": 0,
- "minor": 0,
- "uuid": "00000000-0000-0000-0000-000000000000",
- "measuredRssi": -47
}, - "iBeaconScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100,
- "uuid": "00000000-0000-0000-0000-000000000000"
}, - "threadGateway": {
- "shortPANId": "5964",
- "extPANId": "726991727DD89911",
- "masterKey": "F3AB92FDE5758495111177870437E1C3",
- "networkName": "",
- "commCredentials": "THREADNETWORK",
- "channel": 25,
- "whiteList": [ ]
}, - "eddystoneAdvertisement": {
- "url": "",
- "interval": 100,
- "measuredRssi": -5
}, - "eddystoneScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100
}, - "genericScan": {
- "destAddr": "8.8.8.8",
- "destPort": 12345,
- "interval": 10240,
- "window": 10240,
- "minRSS": -60,
- "companyId": 0
}, - "app_supported": "SINGLE"
}| app_supported | string (IotApplicationSupported) Default: "SINGLE" Enum: "SINGLE" "MULTI" If app_supported is present, response includes IoT profile with default values matching the app_supported (SINGLE or MULTI). If app_supported is not provided, then IoT profile of type SINGLE with default values are returned. |
{- "custId": null,
- "id": "00000000-0000-0000-0000-000000000000",
- "canDelete": true,
- "canEdit": true,
- "name": "",
- "appId": "iBeaconAdvertisement",
- "iBeaconAdvertisement": {
- "interval": 100,
- "major": 0,
- "minor": 0,
- "uuid": "00000000-0000-0000-0000-000000000000",
- "measuredRssi": -47
}, - "iBeaconScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100,
- "uuid": "00000000-0000-0000-0000-000000000000"
}, - "threadGateway": {
- "shortPANId": "5964",
- "extPANId": "726991727DD89911",
- "masterKey": "F3AB92FDE5758495111177870437E1C3",
- "networkName": "",
- "commCredentials": "THREADNETWORK",
- "channel": 25,
- "whiteList": [ ]
}, - "eddystoneAdvertisement": {
- "url": "",
- "interval": 100,
- "measuredRssi": -5
}, - "eddystoneScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100
}, - "genericScan": {
- "destAddr": "8.8.8.8",
- "destPort": 12345,
- "interval": 10240,
- "window": 10240,
- "minRSS": -60,
- "companyId": 0
}, - "app_supported": "SINGLE"
}| iotprofileId required | string A non-empty, valid IotProfile ID |
{- "custId": null,
- "id": "00000000-0000-0000-0000-000000000000",
- "canDelete": true,
- "canEdit": true,
- "name": "",
- "appId": "iBeaconAdvertisement",
- "iBeaconAdvertisement": {
- "interval": 100,
- "major": 0,
- "minor": 0,
- "uuid": "00000000-0000-0000-0000-000000000000",
- "measuredRssi": -47
}, - "iBeaconScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100,
- "uuid": "00000000-0000-0000-0000-000000000000"
}, - "threadGateway": {
- "shortPANId": "5964",
- "extPANId": "726991727DD89911",
- "masterKey": "F3AB92FDE5758495111177870437E1C3",
- "networkName": "",
- "commCredentials": "THREADNETWORK",
- "channel": 25,
- "whiteList": [ ]
}, - "eddystoneAdvertisement": {
- "url": "",
- "interval": 100,
- "measuredRssi": -5
}, - "eddystoneScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100
}, - "genericScan": {
- "destAddr": "8.8.8.8",
- "destPort": 12345,
- "interval": 10240,
- "window": 10240,
- "minRSS": -60,
- "companyId": 0
}, - "app_supported": "SINGLE"
}| iotprofileId required | string A non-empty, valid IotProfile ID |
A valid IotProfileAppsElement instance with attributes to be registered
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string Represents the Friendly Name of the access point. The AP Name defaults to the Serial Number. It does not have to be unique. Validations : The access point name must be between 1 and 64 characters long. Valid character set : Alphanumeric and .-_spacecharacters |
| appId required | string (IoTApplicationId) Enum: "iBeaconAdvertisement" "iBeaconScan" "eddystoneAdvertisement" "eddystoneScan" "threadGateway" "genericScan" |
object (IoTProfileiBeaconAdvertisementElement) | |
object (IoTProfileiBeaconScanElement) | |
object (IoTProfileThreadGatewayElement) | |
object (IoTProfileEddystoneAdvertisementElement) | |
object (IoTProfileEddystoneScanElement) | |
object (IoTProfileGenericScanElement) Configure the APs to scan and report on generic BLE beacons |
{- "custId": null,
- "id": "00000000-0000-0000-0000-000000000000",
- "canDelete": true,
- "canEdit": true,
- "name": "",
- "appId": "iBeaconAdvertisement",
- "iBeaconAdvertisement": {
- "interval": 100,
- "major": 0,
- "minor": 0,
- "uuid": "00000000-0000-0000-0000-000000000000",
- "measuredRssi": -47
}, - "iBeaconScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100,
- "uuid": "00000000-0000-0000-0000-000000000000"
}, - "threadGateway": {
- "shortPANId": "5964",
- "extPANId": "726991727DD89911",
- "masterKey": "F3AB92FDE5758495111177870437E1C3",
- "networkName": "",
- "commCredentials": "THREADNETWORK",
- "channel": 25,
- "whiteList": [ ]
}, - "eddystoneAdvertisement": {
- "url": "",
- "interval": 100,
- "measuredRssi": -5
}, - "eddystoneScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100
}, - "genericScan": {
- "destAddr": "8.8.8.8",
- "destPort": 12345,
- "interval": 10240,
- "window": 10240,
- "minRSS": -60,
- "companyId": 0
}, - "app_supported": "SINGLE"
}{- "custId": null,
- "id": "00000000-0000-0000-0000-000000000000",
- "canDelete": true,
- "canEdit": true,
- "name": "",
- "appId": "iBeaconAdvertisement",
- "iBeaconAdvertisement": {
- "interval": 100,
- "major": 0,
- "minor": 0,
- "uuid": "00000000-0000-0000-0000-000000000000",
- "measuredRssi": -47
}, - "iBeaconScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100,
- "uuid": "00000000-0000-0000-0000-000000000000"
}, - "threadGateway": {
- "shortPANId": "5964",
- "extPANId": "726991727DD89911",
- "masterKey": "F3AB92FDE5758495111177870437E1C3",
- "networkName": "",
- "commCredentials": "THREADNETWORK",
- "channel": 25,
- "whiteList": [ ]
}, - "eddystoneAdvertisement": {
- "url": "",
- "interval": 100,
- "measuredRssi": -5
}, - "eddystoneScan": {
- "destAddr": "0.0.0.0",
- "destPort": 0,
- "interval": 100,
- "window": 100,
- "minRSS": -100
}, - "genericScan": {
- "destAddr": "8.8.8.8",
- "destPort": 12345,
- "interval": 10240,
- "window": 10240,
- "minRSS": -60,
- "companyId": 0
}, - "app_supported": "SINGLE"
}| iotprofileId required | string A non-empty, valid IotProfile ID to be deleted |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}[- {
- "custId": null,
- "id": "e0550435-724a-4876-b40b-14a794b07c1b",
- "canDelete": true,
- "canEdit": true,
- "name": "Locator1",
- "appId": "AeroScout",
- "aeroScout": {
- "ip": "192.168.4.5",
- "port": 12092,
- "mcast": "01:18:8E:00:00:00"
}, - "ekahau": null,
- "centrak": null,
- "sonitor": null
}
]A valid RtlsProfileElement instance with attributes to be registered. The RTLS Profile instance must have all the mandatory attributes like profile name. It can also have optional attributes. Only one of {aeroScout|ekahau|centrak|sonitor} should be populated.
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string Represents the Friendly Name of the RTLS profile. Validations : The name must be between 1 and 64 characters long. Valid character set : Alphanumeric and .-_space characters |
| appId required | string (RtlsApplicationId) Enum: "AeroScout" "Ekahau" "Centrak" "Sonitor" |
object (RtlsProfileAeroScoutElement) | |
object (RtlsProfileEkahauElement) | |
object (RtlsProfileCentrakElement) | |
object (RtlsProfileSonitorElement) |
{- "custId": null,
- "id": "e0550435-724a-4876-b40b-14a794b07c1b",
- "canDelete": true,
- "canEdit": true,
- "name": "Locator1",
- "appId": "AeroScout",
- "aeroScout": {
- "ip": "192.168.4.5",
- "port": 12092,
- "mcast": "01:18:8E:00:00:00"
}, - "ekahau": null,
- "centrak": null,
- "sonitor": null
}{- "custId": null,
- "id": "e0550435-724a-4876-b40b-14a794b07c1b",
- "canDelete": true,
- "canEdit": true,
- "name": "Locator1",
- "appId": "AeroScout",
- "aeroScout": {
- "ip": "192.168.4.5",
- "port": 12092,
- "mcast": "01:18:8E:00:00:00"
}, - "ekahau": null,
- "centrak": null,
- "sonitor": null
}{- "custId": null,
- "id": "e0550435-724a-4876-b40b-14a794b07c1b",
- "canDelete": true,
- "canEdit": true,
- "name": "Locator1",
- "appId": "AeroScout",
- "aeroScout": {
- "ip": "192.168.4.5",
- "port": 12092,
- "mcast": "01:18:8E:00:00:00"
}, - "ekahau": null,
- "centrak": null,
- "sonitor": null
}| rtlsprofileId required | string <uuid> A non-empty, valid RTLS Profile ID |
{- "custId": null,
- "id": "e0550435-724a-4876-b40b-14a794b07c1b",
- "canDelete": true,
- "canEdit": true,
- "name": "Locator1",
- "appId": "AeroScout",
- "aeroScout": {
- "ip": "192.168.4.5",
- "port": 12092,
- "mcast": "01:18:8E:00:00:00"
}, - "ekahau": null,
- "centrak": null,
- "sonitor": null
}| rtlsprofileId required | string <uuid> A non-empty, valid RTLS Profile ID |
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string Represents the Friendly Name of the RTLS profile. Validations : The name must be between 1 and 64 characters long. Valid character set : Alphanumeric and .-_space characters |
| appId required | string (RtlsApplicationId) Enum: "AeroScout" "Ekahau" "Centrak" "Sonitor" |
object (RtlsProfileAeroScoutElement) | |
object (RtlsProfileEkahauElement) | |
object (RtlsProfileCentrakElement) | |
object (RtlsProfileSonitorElement) |
{- "custId": null,
- "id": "e0550435-724a-4876-b40b-14a794b07c1b",
- "canDelete": true,
- "canEdit": true,
- "name": "Locator1",
- "appId": "AeroScout",
- "aeroScout": {
- "ip": "192.168.4.5",
- "port": 12092,
- "mcast": "01:18:8E:00:00:00"
}, - "ekahau": null,
- "centrak": null,
- "sonitor": null
}{- "custId": null,
- "id": "e0550435-724a-4876-b40b-14a794b07c1b",
- "canDelete": true,
- "canEdit": true,
- "name": "Locator1",
- "appId": "AeroScout",
- "aeroScout": {
- "ip": "192.168.4.5",
- "port": 12092,
- "mcast": "01:18:8E:00:00:00"
}, - "ekahau": null,
- "centrak": null,
- "sonitor": null
}| rtlsprofileId required | string A non-empty, valid RTLS Profile ID to be deleted |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}[- {
- "messageCode": "...",
- "details": "...",
- "displayAfterTime": 12345,
- "deleteAfterTime": 12345,
- "properties": {
- "property1": "...",
- "property2": "..."
}, - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}
][- {
- "messageCode": "...",
- "details": "...",
- "displayAfterTime": 12345,
- "deleteAfterTime": 12345,
- "properties": {
- "property1": "...",
- "property2": "..."
}, - "custId": "...",
- "id": "...",
- "canDelete": true,
- "canEdit": true
}
]A valid PositioningProfileElement instance.
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string^[a-zA-Z0-9._ -]{1,64}$ |
| collection | string (Collection) Enum: "Off" "ActiveClients" "AllClients" |
{- "custId": null,
- "id": "a4000be9-bb08-4366-9dee-9e09cf2380a3",
- "canDelete": false,
- "canEdit": true,
- "name": "Thornhill56959",
- "collection": "AllClients"
}{- "custId": null,
- "id": "a4000be9-bb08-4366-9dee-9e09cf2380a3",
- "canDelete": false,
- "canEdit": true,
- "name": "Thornhill56959",
- "collection": "AllClients"
}{- "SA201-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf09312",
- "AP7562-default": "41f88f5a-f0c0-11e7-8c3f-9a214cf0930c",
- "AP3915i-PR-Test": "bed07288-4914-11e9-b6fc-000c29a7fe8f"
}| positioningProfileId required | string A non-empty, valid Positioning ID |
{- "custId": null,
- "id": "a4000be9-bb08-4366-9dee-9e09cf2380a3",
- "canDelete": false,
- "canEdit": true,
- "name": "Thornhill56959",
- "collection": "AllClients"
}| positioningProfileId required | string A non-empty, valid Positioning profile Id |
A valid PositioningProfileElement with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name | string^[a-zA-Z0-9._ -]{1,64}$ |
| collection | string (Collection) Enum: "Off" "ActiveClients" "AllClients" |
{- "custId": null,
- "id": "a4000be9-bb08-4366-9dee-9e09cf2380a3",
- "canDelete": false,
- "canEdit": true,
- "name": "Thornhill56959",
- "collection": "AllClients"
}{- "custId": null,
- "id": "a4000be9-bb08-4366-9dee-9e09cf2380a3",
- "canDelete": false,
- "canEdit": true,
- "name": "Thornhill56959",
- "collection": "AllClients"
}| positioningProfileId required | string A non-empty, valid Positioning ID |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}[- {
- "id": "41f88f5a-f0c0-11e7-8c3f-9a214cf09306",
- "canDelete": false,
- "canEdit": true,
- "name": "AP3912-default",
- "apPlatform": "AP3912",
- "roleIDs": [
- "4459ee6c-2f76-11e7-93ae-92361f002671"
], - "radioIfList": [
- {
- "serviceId": "804078cd-1b76-48f4-a70f-d01f07c75c47",
- "index": 1
}
], - "bandSteeringServiceIds": [
- "804078cd-1b76-48f4-a70f-d01f07c75c47"
], - "wiredIfList": [
- {
- "serviceId": "9cfd5161-79b0-4c87-be1c-5568bbf3c44a",
- "index": 1
}
], - "meshpointIfList": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "index": 1
}
], - "usePolicyZoneName": false,
- "secureTunnelMode": "controlData",
- "secureTunnelLifetime": 0,
- "secureTunnelAp": false,
- "bandPreference": false,
- "sessionPersistence": false,
- "sshEnabled": true,
- "airDefenseProfileId": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "eslProfileId": "6a87317e-687e-11ee-a487-000c29a71485",
- "iotProfileId": "998be9ac-6ed7-45f2-aa47-3254ea8dacb6",
- "rtlsProfileId": "e0550435-724a-4876-b40b-14a794b07c1b",
- "mtu": 1500,
- "positioningProfileId": "42d13c51-4d9c-41da-874d-60e4f832d894",
- "mgmtVlanId": 1,
- "mgmtVlanTagged": false,
- "lag": false,
- "ge2mode": "Backup",
- "usbPower": "Off",
- "psePower": "Off",
- "radios": [
- {
- "radioIndex": 1,
- "mode": "anc",
- "adminState": true,
- "aggregateMpdu": "enabled",
- "txBf": "muMimo",
- "stbc": false,
- "ldpc": true,
- "mbr": "6",
- "dtim": 5,
- "dot11gPM": "None",
- "aggMsdu": false,
- "aggMpduSF": 30,
- "addba": true,
- "probeSuppRssTh": -90,
- "probeSuppOnLowRss": false,
- "deasscOnLowRss": false,
- "radioName": "Radio 1 - 5GHz",
- "supportedModes": [
- "sensor"
], - "radioShare": "inline",
- "ocsChList": [ ],
- "ocsInterval": 20,
- "maxClients": 0,
- "ofdma": "Both",
- "bsscolor": 0,
- "twt": true,
- "mc2uc": "Auto",
- "rtsCts": true,
- "pwrMode6": "LPI"
}
], - "supportedOperatingModes": [
- {
- "id": "SERVICE_2_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND2",
- "defaultProtocol": "gnxbe",
- "supportedProtocols": [
- "gn",
- "gnx",
- "gnxbe",
- "bridge"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SENSOR_SERVICE_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BANDNONE",
- "defaultProtocol": "sensor",
- "supportedProtocols": [
- "sensor"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SERVICE_5L_5H_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND5LOW",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 2,
- "band": "BAND5HIGH",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}
], - "apLogLevel": "Informational",
- "iotList": [ ],
- "analyticsProfileId": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "features": [
- "802.11AC"
], - "wiredPorts": [
- {
- "portIndex": 0,
- "portName": "ETH0",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": false
}, - {
- "portIndex": 1,
- "portName": "ETH1",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": true
}
], - "sensorChList": [ ],
- "sensorMode": "Default",
- "clientBalancing": false,
- "meshpoints": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "pathSelectionMethod": "Uniform",
- "monitorCrm": false,
- "monitorPrimaryLink": false,
- "preferredNeighbor": null,
- "preferredRoot": null,
- "preferredBand": "BandNONE",
- "hysteresisMinTh": -60,
- "hysteresisPeriod": 10,
- "hysteresisDelta": 5,
- "hysteresisSNRDelta": 22,
- "excludeWiredPeer": false,
- "costRoot": false,
- "rootSelectionMethod": "None"
}
], - "ledStatus": "NORMAL",
- "faAuthKey": "testkeyvalue123",
- "edge": false
}
]A non-empty, valid profile instance with the configured parameters The instance must have the mandatory attributes profile name and apPlatform. It can also have optional attributes.
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string^[\\p{Print}&&[^\t\n\r;:&\\p{Cntrl}'\"]]{1,64... Profile name. It is required when creating a new resource with POST. |
| apPlatform required | string The AP platform of the profile. It is required when creating a new resource with POST. |
| roleIDs | Array of strings |
Array of objects (InterfaceAssignmentElement) | |
Array of objects (InterfaceAssignmentElement) | |
Array of objects (MeshpointAssignmentElement) | |
| cbUser | string Client Bridge user name. Used when 802.1x Client Bridge is enabled. |
| cbPassword | string Client Bridge password. Used when the 802.1x Client Bridge is enabled. |
| usePolicyZoneName | boolean |
| secureTunnelMode | string (SecureTunnelMode) Enum: "disabled" "control" "controlData" "debug" Provides encryption, authentication, and key management between the AP and controller. Select the desired Secure Tunnel mode: |
| secureTunnelLifetime | number secureLifeTime: An interval (in hours) at which time the keys of the IPSEC tunnel are renegotiated.
|
| secureTunnelAp | boolean Deprecated secure_tunnel_ap controls encryption of communication between different APs |
| bandPreference | boolean Deprecated |
| sessionPersistence | boolean |
| sshEnabled | boolean Default: false This controls whether the AP enables its SSHD server. For release 1.0 SSHD is accessable if it is enabled and there is an unblocked route between the AP wired interface and the administrator's computer being used to log into the AP. |
| airDefenseProfileId | string <uuid> ID of existing AirDefense profile. null if no AirDefense profile is assigned. |
| airDefenseEssentials | boolean Default: false When set to true, airDefenseProfileId is ignored |
| xLocationProfileId | string Deprecated |
| eslProfileId | string <uuid> ID of existing ESL profile. null if no RTLS profile is assigned. |
| iotProfileId | string |
| rtlsProfileId | string <uuid> ID of existing RTLS profile. null if no RTLS profile is assigned. |
| mtu | number |
| positioningProfileId | string |
| mgmtVlanId | number |
| mgmtVlanTagged | boolean |
| lag | boolean Deprecated |
| ge2mode | string (Ge2Mode) Enum: "Backup" "LAG" "Client" "Bridge" |
| usbPower | string (PwrLevel) Enum: "Off" "Auto" |
| psePower | string (PwrLevel) Enum: "Off" "Auto" |
| pollTimeout | integer [ 3 .. 600 ] Default: 3 |
Array of objects (ProfileRadioElement) List of radios in the access point Validations : Not null and non-empty list of RadioElements. | |
| operatingMode | string (OperatingMode) Default: "GENERIC" Enum: "GENERIC" "SERVICE_2_5_6" "SENSOR_SERVICE_5_6" "SERVICE_5L_5H_6" "SENSOR_SERVICE_5_2" "SERVICE_5L_5H_2" "SERVICE_6L_5_6H" "SENSOR_SERVICE_2_5_6" "SENSOR_SERVICE_2_5H_5L" Modern AP hardware types include dual or triple band radios. A limited subset of band combinations are supported. Operating mode defines the supported band combinations per radio. Access Points with fixed band radios use GENERIC operating mode. |
| apLogLevel | string (ApLogLevel) Enum: "Emergencies" "Alerts" "Critical" "Errors" "Warnings" "Notifications" "Informational" "Debugging" |
Array of objects (InterfaceAssignmentElement) | |
| analyticsProfileId | string |
Array of objects (ProfileWiredPort) | |
| sensorChList | Array of strings List of channels for sensor mode. |
| sensorMode | string (SensorScanMode) Enum: "Default" "Locked" "Custom" |
| clientBalancing | boolean Default: false Enable client balancing between APs |
Array of objects (ProfileMeshpointElement) | |
| ledStatus | string (LedStatus) Default: "NORMAL" Enum: "OFF" "IDENTITY" "NORMAL" "SOLID" The state the AP LEDs. Can be read or written. Default value is "normal". |
object (PeapElement) PEAP element. | |
object (PeapElement) PEAP element. | |
| faAuthKey | string^[^\t?`"\\]{0,32}$ Default: "" Fabric Attach authentication key. An empty string means use the default value. |
| enforcePkiAuth | boolean Default: false Restricted tunnel establishment for AP with CA certificates only |
| cbRssThreshold | integer [ -128 .. -40 ] Default: -70 Client Bridge RSS threshold for reconnecting to root AP |
object (SmartPollElement) Smart poll element | |
| additionalTopologyIDs | Array of strings <uuid> Additional topologies assigned directly to Profile |
| bandSteeringServiceIds | Array of strings <uuid> List of WLAN IDs with band steering enabled |
| edge | boolean Default: false Enable Edge Compute environment |
{- "id": "41f88f5a-f0c0-11e7-8c3f-9a214cf09306",
- "canDelete": false,
- "canEdit": true,
- "name": "AP3912-default",
- "apPlatform": "AP3912",
- "roleIDs": [
- "4459ee6c-2f76-11e7-93ae-92361f002671"
], - "radioIfList": [
- {
- "serviceId": "804078cd-1b76-48f4-a70f-d01f07c75c47",
- "index": 1
}
], - "bandSteeringServiceIds": [
- "804078cd-1b76-48f4-a70f-d01f07c75c47"
], - "wiredIfList": [
- {
- "serviceId": "9cfd5161-79b0-4c87-be1c-5568bbf3c44a",
- "index": 1
}
], - "meshpointIfList": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "index": 1
}
], - "usePolicyZoneName": false,
- "secureTunnelMode": "controlData",
- "secureTunnelLifetime": 0,
- "secureTunnelAp": false,
- "bandPreference": false,
- "sessionPersistence": false,
- "sshEnabled": true,
- "airDefenseProfileId": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "eslProfileId": "6a87317e-687e-11ee-a487-000c29a71485",
- "iotProfileId": "998be9ac-6ed7-45f2-aa47-3254ea8dacb6",
- "rtlsProfileId": "e0550435-724a-4876-b40b-14a794b07c1b",
- "mtu": 1500,
- "positioningProfileId": "42d13c51-4d9c-41da-874d-60e4f832d894",
- "mgmtVlanId": 1,
- "mgmtVlanTagged": false,
- "lag": false,
- "ge2mode": "Backup",
- "usbPower": "Off",
- "psePower": "Off",
- "radios": [
- {
- "radioIndex": 1,
- "mode": "anc",
- "adminState": true,
- "aggregateMpdu": "enabled",
- "txBf": "muMimo",
- "stbc": false,
- "ldpc": true,
- "mbr": "6",
- "dtim": 5,
- "dot11gPM": "None",
- "aggMsdu": false,
- "aggMpduSF": 30,
- "addba": true,
- "probeSuppRssTh": -90,
- "probeSuppOnLowRss": false,
- "deasscOnLowRss": false,
- "radioName": "Radio 1 - 5GHz",
- "supportedModes": [
- "sensor"
], - "radioShare": "inline",
- "ocsChList": [ ],
- "ocsInterval": 20,
- "maxClients": 0,
- "ofdma": "Both",
- "bsscolor": 0,
- "twt": true,
- "mc2uc": "Auto",
- "rtsCts": true,
- "pwrMode6": "LPI"
}
], - "supportedOperatingModes": [
- {
- "id": "SERVICE_2_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND2",
- "defaultProtocol": "gnxbe",
- "supportedProtocols": [
- "gn",
- "gnx",
- "gnxbe",
- "bridge"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SENSOR_SERVICE_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BANDNONE",
- "defaultProtocol": "sensor",
- "supportedProtocols": [
- "sensor"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SERVICE_5L_5H_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND5LOW",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 2,
- "band": "BAND5HIGH",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}
], - "apLogLevel": "Informational",
- "iotList": [ ],
- "analyticsProfileId": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "features": [
- "802.11AC"
], - "wiredPorts": [
- {
- "portIndex": 0,
- "portName": "ETH0",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": false
}, - {
- "portIndex": 1,
- "portName": "ETH1",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": true
}
], - "sensorChList": [ ],
- "sensorMode": "Default",
- "clientBalancing": false,
- "meshpoints": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "pathSelectionMethod": "Uniform",
- "monitorCrm": false,
- "monitorPrimaryLink": false,
- "preferredNeighbor": null,
- "preferredRoot": null,
- "preferredBand": "BandNONE",
- "hysteresisMinTh": -60,
- "hysteresisPeriod": 10,
- "hysteresisDelta": 5,
- "hysteresisSNRDelta": 22,
- "excludeWiredPeer": false,
- "costRoot": false,
- "rootSelectionMethod": "None"
}
], - "ledStatus": "NORMAL",
- "faAuthKey": "testkeyvalue123",
- "edge": false
}{- "id": "41f88f5a-f0c0-11e7-8c3f-9a214cf09306",
- "canDelete": false,
- "canEdit": true,
- "name": "AP3912-default",
- "apPlatform": "AP3912",
- "roleIDs": [
- "4459ee6c-2f76-11e7-93ae-92361f002671"
], - "radioIfList": [
- {
- "serviceId": "804078cd-1b76-48f4-a70f-d01f07c75c47",
- "index": 1
}
], - "bandSteeringServiceIds": [
- "804078cd-1b76-48f4-a70f-d01f07c75c47"
], - "wiredIfList": [
- {
- "serviceId": "9cfd5161-79b0-4c87-be1c-5568bbf3c44a",
- "index": 1
}
], - "meshpointIfList": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "index": 1
}
], - "usePolicyZoneName": false,
- "secureTunnelMode": "controlData",
- "secureTunnelLifetime": 0,
- "secureTunnelAp": false,
- "bandPreference": false,
- "sessionPersistence": false,
- "sshEnabled": true,
- "airDefenseProfileId": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "eslProfileId": "6a87317e-687e-11ee-a487-000c29a71485",
- "iotProfileId": "998be9ac-6ed7-45f2-aa47-3254ea8dacb6",
- "rtlsProfileId": "e0550435-724a-4876-b40b-14a794b07c1b",
- "mtu": 1500,
- "positioningProfileId": "42d13c51-4d9c-41da-874d-60e4f832d894",
- "mgmtVlanId": 1,
- "mgmtVlanTagged": false,
- "lag": false,
- "ge2mode": "Backup",
- "usbPower": "Off",
- "psePower": "Off",
- "radios": [
- {
- "radioIndex": 1,
- "mode": "anc",
- "adminState": true,
- "aggregateMpdu": "enabled",
- "txBf": "muMimo",
- "stbc": false,
- "ldpc": true,
- "mbr": "6",
- "dtim": 5,
- "dot11gPM": "None",
- "aggMsdu": false,
- "aggMpduSF": 30,
- "addba": true,
- "probeSuppRssTh": -90,
- "probeSuppOnLowRss": false,
- "deasscOnLowRss": false,
- "radioName": "Radio 1 - 5GHz",
- "supportedModes": [
- "sensor"
], - "radioShare": "inline",
- "ocsChList": [ ],
- "ocsInterval": 20,
- "maxClients": 0,
- "ofdma": "Both",
- "bsscolor": 0,
- "twt": true,
- "mc2uc": "Auto",
- "rtsCts": true,
- "pwrMode6": "LPI"
}
], - "supportedOperatingModes": [
- {
- "id": "SERVICE_2_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND2",
- "defaultProtocol": "gnxbe",
- "supportedProtocols": [
- "gn",
- "gnx",
- "gnxbe",
- "bridge"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SENSOR_SERVICE_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BANDNONE",
- "defaultProtocol": "sensor",
- "supportedProtocols": [
- "sensor"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SERVICE_5L_5H_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND5LOW",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 2,
- "band": "BAND5HIGH",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}
], - "apLogLevel": "Informational",
- "iotList": [ ],
- "analyticsProfileId": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "features": [
- "802.11AC"
], - "wiredPorts": [
- {
- "portIndex": 0,
- "portName": "ETH0",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": false
}, - {
- "portIndex": 1,
- "portName": "ETH1",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": true
}
], - "sensorChList": [ ],
- "sensorMode": "Default",
- "clientBalancing": false,
- "meshpoints": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "pathSelectionMethod": "Uniform",
- "monitorCrm": false,
- "monitorPrimaryLink": false,
- "preferredNeighbor": null,
- "preferredRoot": null,
- "preferredBand": "BandNONE",
- "hysteresisMinTh": -60,
- "hysteresisPeriod": 10,
- "hysteresisDelta": 5,
- "hysteresisSNRDelta": 22,
- "excludeWiredPeer": false,
- "costRoot": false,
- "rootSelectionMethod": "None"
}
], - "ledStatus": "NORMAL",
- "faAuthKey": "testkeyvalue123",
- "edge": false
}A non-empty, valid profile instance with the configured parameters. The instance must have the mandatory attributes profile name and apPlatform.
| name required | string^[\\p{Print}&&[^\t\n\r;:&\\p{Cntrl}'\"]]{1,64... Profile name. It is required when creating a new resource with POST. |
| apPlatform required | string The AP platform of the profile. It is required when creating a new resource with POST. |
{- "name": "string",
- "apPlatform": "string"
}{- "id": "41f88f5a-f0c0-11e7-8c3f-9a214cf09306",
- "canDelete": false,
- "canEdit": true,
- "name": "AP3912-default",
- "apPlatform": "AP3912",
- "roleIDs": [
- "4459ee6c-2f76-11e7-93ae-92361f002671"
], - "radioIfList": [
- {
- "serviceId": "804078cd-1b76-48f4-a70f-d01f07c75c47",
- "index": 1
}
], - "bandSteeringServiceIds": [
- "804078cd-1b76-48f4-a70f-d01f07c75c47"
], - "wiredIfList": [
- {
- "serviceId": "9cfd5161-79b0-4c87-be1c-5568bbf3c44a",
- "index": 1
}
], - "meshpointIfList": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "index": 1
}
], - "usePolicyZoneName": false,
- "secureTunnelMode": "controlData",
- "secureTunnelLifetime": 0,
- "secureTunnelAp": false,
- "bandPreference": false,
- "sessionPersistence": false,
- "sshEnabled": true,
- "airDefenseProfileId": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "eslProfileId": "6a87317e-687e-11ee-a487-000c29a71485",
- "iotProfileId": "998be9ac-6ed7-45f2-aa47-3254ea8dacb6",
- "rtlsProfileId": "e0550435-724a-4876-b40b-14a794b07c1b",
- "mtu": 1500,
- "positioningProfileId": "42d13c51-4d9c-41da-874d-60e4f832d894",
- "mgmtVlanId": 1,
- "mgmtVlanTagged": false,
- "lag": false,
- "ge2mode": "Backup",
- "usbPower": "Off",
- "psePower": "Off",
- "radios": [
- {
- "radioIndex": 1,
- "mode": "anc",
- "adminState": true,
- "aggregateMpdu": "enabled",
- "txBf": "muMimo",
- "stbc": false,
- "ldpc": true,
- "mbr": "6",
- "dtim": 5,
- "dot11gPM": "None",
- "aggMsdu": false,
- "aggMpduSF": 30,
- "addba": true,
- "probeSuppRssTh": -90,
- "probeSuppOnLowRss": false,
- "deasscOnLowRss": false,
- "radioName": "Radio 1 - 5GHz",
- "supportedModes": [
- "sensor"
], - "radioShare": "inline",
- "ocsChList": [ ],
- "ocsInterval": 20,
- "maxClients": 0,
- "ofdma": "Both",
- "bsscolor": 0,
- "twt": true,
- "mc2uc": "Auto",
- "rtsCts": true,
- "pwrMode6": "LPI"
}
], - "supportedOperatingModes": [
- {
- "id": "SERVICE_2_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND2",
- "defaultProtocol": "gnxbe",
- "supportedProtocols": [
- "gn",
- "gnx",
- "gnxbe",
- "bridge"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SENSOR_SERVICE_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BANDNONE",
- "defaultProtocol": "sensor",
- "supportedProtocols": [
- "sensor"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SERVICE_5L_5H_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND5LOW",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 2,
- "band": "BAND5HIGH",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}
], - "apLogLevel": "Informational",
- "iotList": [ ],
- "analyticsProfileId": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "features": [
- "802.11AC"
], - "wiredPorts": [
- {
- "portIndex": 0,
- "portName": "ETH0",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": false
}, - {
- "portIndex": 1,
- "portName": "ETH1",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": true
}
], - "sensorChList": [ ],
- "sensorMode": "Default",
- "clientBalancing": false,
- "meshpoints": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "pathSelectionMethod": "Uniform",
- "monitorCrm": false,
- "monitorPrimaryLink": false,
- "preferredNeighbor": null,
- "preferredRoot": null,
- "preferredBand": "BandNONE",
- "hysteresisMinTh": -60,
- "hysteresisPeriod": 10,
- "hysteresisDelta": 5,
- "hysteresisSNRDelta": 22,
- "excludeWiredPeer": false,
- "costRoot": false,
- "rootSelectionMethod": "None"
}
], - "ledStatus": "NORMAL",
- "faAuthKey": "testkeyvalue123",
- "edge": false
}| profileId required | string A non-empty, valid ID |
| newProfileName | string^[\\p{Print}&&[^\t\n\r;:&\\p{Cntrl}'\"]]{1,64... A non-empty, valid names for the new profile |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| profileId required | string <uuid> |
{- "id": "41f88f5a-f0c0-11e7-8c3f-9a214cf09306",
- "canDelete": false,
- "canEdit": true,
- "name": "AP3912-default",
- "apPlatform": "AP3912",
- "roleIDs": [
- "4459ee6c-2f76-11e7-93ae-92361f002671"
], - "radioIfList": [
- {
- "serviceId": "804078cd-1b76-48f4-a70f-d01f07c75c47",
- "index": 1
}
], - "bandSteeringServiceIds": [
- "804078cd-1b76-48f4-a70f-d01f07c75c47"
], - "wiredIfList": [
- {
- "serviceId": "9cfd5161-79b0-4c87-be1c-5568bbf3c44a",
- "index": 1
}
], - "meshpointIfList": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "index": 1
}
], - "usePolicyZoneName": false,
- "secureTunnelMode": "controlData",
- "secureTunnelLifetime": 0,
- "secureTunnelAp": false,
- "bandPreference": false,
- "sessionPersistence": false,
- "sshEnabled": true,
- "airDefenseProfileId": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "eslProfileId": "6a87317e-687e-11ee-a487-000c29a71485",
- "iotProfileId": "998be9ac-6ed7-45f2-aa47-3254ea8dacb6",
- "rtlsProfileId": "e0550435-724a-4876-b40b-14a794b07c1b",
- "mtu": 1500,
- "positioningProfileId": "42d13c51-4d9c-41da-874d-60e4f832d894",
- "mgmtVlanId": 1,
- "mgmtVlanTagged": false,
- "lag": false,
- "ge2mode": "Backup",
- "usbPower": "Off",
- "psePower": "Off",
- "radios": [
- {
- "radioIndex": 1,
- "mode": "anc",
- "adminState": true,
- "aggregateMpdu": "enabled",
- "txBf": "muMimo",
- "stbc": false,
- "ldpc": true,
- "mbr": "6",
- "dtim": 5,
- "dot11gPM": "None",
- "aggMsdu": false,
- "aggMpduSF": 30,
- "addba": true,
- "probeSuppRssTh": -90,
- "probeSuppOnLowRss": false,
- "deasscOnLowRss": false,
- "radioName": "Radio 1 - 5GHz",
- "supportedModes": [
- "sensor"
], - "radioShare": "inline",
- "ocsChList": [ ],
- "ocsInterval": 20,
- "maxClients": 0,
- "ofdma": "Both",
- "bsscolor": 0,
- "twt": true,
- "mc2uc": "Auto",
- "rtsCts": true,
- "pwrMode6": "LPI"
}
], - "supportedOperatingModes": [
- {
- "id": "SERVICE_2_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND2",
- "defaultProtocol": "gnxbe",
- "supportedProtocols": [
- "gn",
- "gnx",
- "gnxbe",
- "bridge"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SENSOR_SERVICE_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BANDNONE",
- "defaultProtocol": "sensor",
- "supportedProtocols": [
- "sensor"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SERVICE_5L_5H_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND5LOW",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 2,
- "band": "BAND5HIGH",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}
], - "apLogLevel": "Informational",
- "iotList": [ ],
- "analyticsProfileId": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "features": [
- "802.11AC"
], - "wiredPorts": [
- {
- "portIndex": 0,
- "portName": "ETH0",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": false
}, - {
- "portIndex": 1,
- "portName": "ETH1",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": true
}
], - "sensorChList": [ ],
- "sensorMode": "Default",
- "clientBalancing": false,
- "meshpoints": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "pathSelectionMethod": "Uniform",
- "monitorCrm": false,
- "monitorPrimaryLink": false,
- "preferredNeighbor": null,
- "preferredRoot": null,
- "preferredBand": "BandNONE",
- "hysteresisMinTh": -60,
- "hysteresisPeriod": 10,
- "hysteresisDelta": 5,
- "hysteresisSNRDelta": 22,
- "excludeWiredPeer": false,
- "costRoot": false,
- "rootSelectionMethod": "None"
}
], - "ledStatus": "NORMAL",
- "faAuthKey": "testkeyvalue123",
- "edge": false
}| profileId required | string <uuid> |
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string^[\\p{Print}&&[^\t\n\r;:&\\p{Cntrl}'\"]]{1,64... Profile name. It is required when creating a new resource with POST. |
| apPlatform required | string The AP platform of the profile. It is required when creating a new resource with POST. |
| roleIDs | Array of strings |
Array of objects (InterfaceAssignmentElement) | |
Array of objects (InterfaceAssignmentElement) | |
Array of objects (MeshpointAssignmentElement) | |
| cbUser | string Client Bridge user name. Used when 802.1x Client Bridge is enabled. |
| cbPassword | string Client Bridge password. Used when the 802.1x Client Bridge is enabled. |
| usePolicyZoneName | boolean |
| secureTunnelMode | string (SecureTunnelMode) Enum: "disabled" "control" "controlData" "debug" Provides encryption, authentication, and key management between the AP and controller. Select the desired Secure Tunnel mode: |
| secureTunnelLifetime | number secureLifeTime: An interval (in hours) at which time the keys of the IPSEC tunnel are renegotiated.
|
| secureTunnelAp | boolean Deprecated secure_tunnel_ap controls encryption of communication between different APs |
| bandPreference | boolean Deprecated |
| sessionPersistence | boolean |
| sshEnabled | boolean Default: false This controls whether the AP enables its SSHD server. For release 1.0 SSHD is accessable if it is enabled and there is an unblocked route between the AP wired interface and the administrator's computer being used to log into the AP. |
| airDefenseProfileId | string <uuid> ID of existing AirDefense profile. null if no AirDefense profile is assigned. |
| airDefenseEssentials | boolean Default: false When set to true, airDefenseProfileId is ignored |
| xLocationProfileId | string Deprecated |
| eslProfileId | string <uuid> ID of existing ESL profile. null if no RTLS profile is assigned. |
| iotProfileId | string |
| rtlsProfileId | string <uuid> ID of existing RTLS profile. null if no RTLS profile is assigned. |
| mtu | number |
| positioningProfileId | string |
| mgmtVlanId | number |
| mgmtVlanTagged | boolean |
| lag | boolean Deprecated |
| ge2mode | string (Ge2Mode) Enum: "Backup" "LAG" "Client" "Bridge" |
| usbPower | string (PwrLevel) Enum: "Off" "Auto" |
| psePower | string (PwrLevel) Enum: "Off" "Auto" |
| pollTimeout | integer [ 3 .. 600 ] Default: 3 |
Array of objects (ProfileRadioElement) List of radios in the access point Validations : Not null and non-empty list of RadioElements. | |
| operatingMode | string (OperatingMode) Default: "GENERIC" Enum: "GENERIC" "SERVICE_2_5_6" "SENSOR_SERVICE_5_6" "SERVICE_5L_5H_6" "SENSOR_SERVICE_5_2" "SERVICE_5L_5H_2" "SERVICE_6L_5_6H" "SENSOR_SERVICE_2_5_6" "SENSOR_SERVICE_2_5H_5L" Modern AP hardware types include dual or triple band radios. A limited subset of band combinations are supported. Operating mode defines the supported band combinations per radio. Access Points with fixed band radios use GENERIC operating mode. |
| apLogLevel | string (ApLogLevel) Enum: "Emergencies" "Alerts" "Critical" "Errors" "Warnings" "Notifications" "Informational" "Debugging" |
Array of objects (InterfaceAssignmentElement) | |
| analyticsProfileId | string |
Array of objects (ProfileWiredPort) | |
| sensorChList | Array of strings List of channels for sensor mode. |
| sensorMode | string (SensorScanMode) Enum: "Default" "Locked" "Custom" |
| clientBalancing | boolean Default: false Enable client balancing between APs |
Array of objects (ProfileMeshpointElement) | |
| ledStatus | string (LedStatus) Default: "NORMAL" Enum: "OFF" "IDENTITY" "NORMAL" "SOLID" The state the AP LEDs. Can be read or written. Default value is "normal". |
object (PeapElement) PEAP element. | |
object (PeapElement) PEAP element. | |
| faAuthKey | string^[^\t?`"\\]{0,32}$ Default: "" Fabric Attach authentication key. An empty string means use the default value. |
| enforcePkiAuth | boolean Default: false Restricted tunnel establishment for AP with CA certificates only |
| cbRssThreshold | integer [ -128 .. -40 ] Default: -70 Client Bridge RSS threshold for reconnecting to root AP |
object (SmartPollElement) Smart poll element | |
| additionalTopologyIDs | Array of strings <uuid> Additional topologies assigned directly to Profile |
| bandSteeringServiceIds | Array of strings <uuid> List of WLAN IDs with band steering enabled |
| edge | boolean Default: false Enable Edge Compute environment |
{- "id": "41f88f5a-f0c0-11e7-8c3f-9a214cf09306",
- "canDelete": false,
- "canEdit": true,
- "name": "AP3912-default",
- "apPlatform": "AP3912",
- "roleIDs": [
- "4459ee6c-2f76-11e7-93ae-92361f002671"
], - "radioIfList": [
- {
- "serviceId": "804078cd-1b76-48f4-a70f-d01f07c75c47",
- "index": 1
}
], - "bandSteeringServiceIds": [
- "804078cd-1b76-48f4-a70f-d01f07c75c47"
], - "wiredIfList": [
- {
- "serviceId": "9cfd5161-79b0-4c87-be1c-5568bbf3c44a",
- "index": 1
}
], - "meshpointIfList": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "index": 1
}
], - "usePolicyZoneName": false,
- "secureTunnelMode": "controlData",
- "secureTunnelLifetime": 0,
- "secureTunnelAp": false,
- "bandPreference": false,
- "sessionPersistence": false,
- "sshEnabled": true,
- "airDefenseProfileId": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "eslProfileId": "6a87317e-687e-11ee-a487-000c29a71485",
- "iotProfileId": "998be9ac-6ed7-45f2-aa47-3254ea8dacb6",
- "rtlsProfileId": "e0550435-724a-4876-b40b-14a794b07c1b",
- "mtu": 1500,
- "positioningProfileId": "42d13c51-4d9c-41da-874d-60e4f832d894",
- "mgmtVlanId": 1,
- "mgmtVlanTagged": false,
- "lag": false,
- "ge2mode": "Backup",
- "usbPower": "Off",
- "psePower": "Off",
- "radios": [
- {
- "radioIndex": 1,
- "mode": "anc",
- "adminState": true,
- "aggregateMpdu": "enabled",
- "txBf": "muMimo",
- "stbc": false,
- "ldpc": true,
- "mbr": "6",
- "dtim": 5,
- "dot11gPM": "None",
- "aggMsdu": false,
- "aggMpduSF": 30,
- "addba": true,
- "probeSuppRssTh": -90,
- "probeSuppOnLowRss": false,
- "deasscOnLowRss": false,
- "radioName": "Radio 1 - 5GHz",
- "supportedModes": [
- "sensor"
], - "radioShare": "inline",
- "ocsChList": [ ],
- "ocsInterval": 20,
- "maxClients": 0,
- "ofdma": "Both",
- "bsscolor": 0,
- "twt": true,
- "mc2uc": "Auto",
- "rtsCts": true,
- "pwrMode6": "LPI"
}
], - "supportedOperatingModes": [
- {
- "id": "SERVICE_2_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND2",
- "defaultProtocol": "gnxbe",
- "supportedProtocols": [
- "gn",
- "gnx",
- "gnxbe",
- "bridge"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SENSOR_SERVICE_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BANDNONE",
- "defaultProtocol": "sensor",
- "supportedProtocols": [
- "sensor"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SERVICE_5L_5H_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND5LOW",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 2,
- "band": "BAND5HIGH",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}
], - "apLogLevel": "Informational",
- "iotList": [ ],
- "analyticsProfileId": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "features": [
- "802.11AC"
], - "wiredPorts": [
- {
- "portIndex": 0,
- "portName": "ETH0",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": false
}, - {
- "portIndex": 1,
- "portName": "ETH1",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": true
}
], - "sensorChList": [ ],
- "sensorMode": "Default",
- "clientBalancing": false,
- "meshpoints": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "pathSelectionMethod": "Uniform",
- "monitorCrm": false,
- "monitorPrimaryLink": false,
- "preferredNeighbor": null,
- "preferredRoot": null,
- "preferredBand": "BandNONE",
- "hysteresisMinTh": -60,
- "hysteresisPeriod": 10,
- "hysteresisDelta": 5,
- "hysteresisSNRDelta": 22,
- "excludeWiredPeer": false,
- "costRoot": false,
- "rootSelectionMethod": "None"
}
], - "ledStatus": "NORMAL",
- "faAuthKey": "testkeyvalue123",
- "edge": false
}{- "id": "41f88f5a-f0c0-11e7-8c3f-9a214cf09306",
- "canDelete": false,
- "canEdit": true,
- "name": "AP3912-default",
- "apPlatform": "AP3912",
- "roleIDs": [
- "4459ee6c-2f76-11e7-93ae-92361f002671"
], - "radioIfList": [
- {
- "serviceId": "804078cd-1b76-48f4-a70f-d01f07c75c47",
- "index": 1
}
], - "bandSteeringServiceIds": [
- "804078cd-1b76-48f4-a70f-d01f07c75c47"
], - "wiredIfList": [
- {
- "serviceId": "9cfd5161-79b0-4c87-be1c-5568bbf3c44a",
- "index": 1
}
], - "meshpointIfList": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "index": 1
}
], - "usePolicyZoneName": false,
- "secureTunnelMode": "controlData",
- "secureTunnelLifetime": 0,
- "secureTunnelAp": false,
- "bandPreference": false,
- "sessionPersistence": false,
- "sshEnabled": true,
- "airDefenseProfileId": "5c9005a8-18bf-44f8-803b-30c09c1cfebe",
- "eslProfileId": "6a87317e-687e-11ee-a487-000c29a71485",
- "iotProfileId": "998be9ac-6ed7-45f2-aa47-3254ea8dacb6",
- "rtlsProfileId": "e0550435-724a-4876-b40b-14a794b07c1b",
- "mtu": 1500,
- "positioningProfileId": "42d13c51-4d9c-41da-874d-60e4f832d894",
- "mgmtVlanId": 1,
- "mgmtVlanTagged": false,
- "lag": false,
- "ge2mode": "Backup",
- "usbPower": "Off",
- "psePower": "Off",
- "radios": [
- {
- "radioIndex": 1,
- "mode": "anc",
- "adminState": true,
- "aggregateMpdu": "enabled",
- "txBf": "muMimo",
- "stbc": false,
- "ldpc": true,
- "mbr": "6",
- "dtim": 5,
- "dot11gPM": "None",
- "aggMsdu": false,
- "aggMpduSF": 30,
- "addba": true,
- "probeSuppRssTh": -90,
- "probeSuppOnLowRss": false,
- "deasscOnLowRss": false,
- "radioName": "Radio 1 - 5GHz",
- "supportedModes": [
- "sensor"
], - "radioShare": "inline",
- "ocsChList": [ ],
- "ocsInterval": 20,
- "maxClients": 0,
- "ofdma": "Both",
- "bsscolor": 0,
- "twt": true,
- "mc2uc": "Auto",
- "rtsCts": true,
- "pwrMode6": "LPI"
}
], - "supportedOperatingModes": [
- {
- "id": "SERVICE_2_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND2",
- "defaultProtocol": "gnxbe",
- "supportedProtocols": [
- "gn",
- "gnx",
- "gnxbe",
- "bridge"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SENSOR_SERVICE_5_6",
- "radios": [
- {
- "id": 1,
- "band": "BANDNONE",
- "defaultProtocol": "sensor",
- "supportedProtocols": [
- "sensor"
]
}, - {
- "id": 2,
- "band": "BAND5",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe",
- "bridge"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}, - {
- "id": "SERVICE_5L_5H_6",
- "radios": [
- {
- "id": 1,
- "band": "BAND5LOW",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 2,
- "band": "BAND5HIGH",
- "defaultProtocol": "ancxbe",
- "supportedProtocols": [
- "anc",
- "ancx",
- "ancxbe"
]
}, - {
- "id": 3,
- "band": "BAND6",
- "defaultProtocol": "ax6be",
- "supportedProtocols": [
- "ax6",
- "ax6be",
- "bridge"
]
}
]
}
], - "apLogLevel": "Informational",
- "iotList": [ ],
- "analyticsProfileId": "c37ec03c-7470-43c5-84bd-2f00ec3c17bf",
- "features": [
- "802.11AC"
], - "wiredPorts": [
- {
- "portIndex": 0,
- "portName": "ETH0",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": false
}, - {
- "portIndex": 1,
- "portName": "ETH1",
- "ethMode": "ETH_DUPLEX_TYPE_FULL",
- "ethSpeed": "speedAuto",
- "energyEffEth": true
}
], - "sensorChList": [ ],
- "sensorMode": "Default",
- "clientBalancing": false,
- "meshpoints": [
- {
- "meshpointId": "804078cd-1b76-48f4-a70f-d01f07c75c88",
- "pathSelectionMethod": "Uniform",
- "monitorCrm": false,
- "monitorPrimaryLink": false,
- "preferredNeighbor": null,
- "preferredRoot": null,
- "preferredBand": "BandNONE",
- "hysteresisMinTh": -60,
- "hysteresisPeriod": 10,
- "hysteresisDelta": 5,
- "hysteresisSNRDelta": 22,
- "excludeWiredPeer": false,
- "costRoot": false,
- "rootSelectionMethod": "None"
}
], - "ledStatus": "NORMAL",
- "faAuthKey": "testkeyvalue123",
- "edge": false
}| profileId required | string <uuid> |
| radioMode required | string (RadioMode) Enum: "sensor" "b" "g" "bg" "gn" "bgn" "gnstrict" "gnx" "a" "an" "anstrict" "anc" "acstrict" "ancx" "ax6" "bridge" "gnxbe" "ancxbe" "ax6be" Example: radioMode=sensor Radio modes of profile radios. The first mode corresponds to radio1, the second mode corresponds to radio2, etc. Example: .../channels?radioMode=anc,gn |
[- {
- "radioIndex": 1,
- "channel": [
- "36"
]
}
]| profileId required | string <uuid> |
[- {
- "serviceId": "804078cd-1b76-48f4-a70f-d01f07c75c47",
- "index": 1
}
]| channelWidth | string (ChannelWidth) Enum: "Ch1Width_20MHz" "Ch1Width_40MHz" "Ch1Width_Auto" "Ch1Width_80MHz" "Ch1Width_160MHz" "Ch1Width_320MHz" "Auto" Example: channelWidth=Ch1Width_20MHz Channel width of the requested channel list |
| country | string (Country) Enum: "AFGHANISTAN" "ALBANIA" "ALGERIA" "AMERICAN_SAMOA" "ANDORRA" "ANGOLA" "ANGUILLA" "ANTARCTICA" "ANTIGUA_BARBUDA" "ARGENTINA" "ARMENIA" "ARUBA" "AUSTRALIA" "AUSTRIA" "AZERBAIJAN" "BAHAMAS" "BAHRAIN" "BANGLADESH" "BARBADOS" "BELARUS" "BELGIUM" "BELIZE" "BENIN" "BERMUDA" "BHUTAN" "BOLIVIA" "BONAIRE_SINT_EUSTATIUS_AND_SABA" "BOSNIA_HERZEGOVINA" "BOTSWANA" "BOUVET_ISLAND" "BRAZIL" "BRITISH_INDIAN_OCEAN_TERRITORY" "BRUNEI_DARUSSALAM" "BULGARIA" "BURKINA_FASO" "BURUNDI" "CAMBODIA" "CAMEROON" "CANADA" "CAPE_VERDE" "CAYMAN_ISLANDS" "CENTRAL_AFRICAN_REPUBLIC" "CHAD" "CHILE" "CHINA" "CHRISTMAS_ISLAND" "COCOS_KEELING_ISLANDS" "COLOMBIA" "COMOROS" "CONGO" "CONGO_THE_DRC" "COOK_ISLANDS" "COSTA_RICA" "IVORY_COAST" "CROATIA" "CUBA" "CURACAO" "CYPRUS" "CZECH" "DENMARK" "DJIBOUTI" "DOMINICA" "DOMINICAN" "EAST_TIMOR" "ECUADOR" "EGYPT" "EL_SALVADOR" "EQUATORIAL_GUINEA" "ERITREA" "ESTONIA" "ETHIOPIA" "FALKLAND_ISLANDS_MALVINAS" "FAEROE_ISLANDS" "FIJI" "FINLAND" "FRANCE" "FRANCE_METROPOLITAN" "FRENCH_GUIANA" "FRENCH_POLYNESIA" "FRENCH_SOUTHERN_TERRITORIES" "GABON" "GAMBIA" "GEORGIA" "GERMANY" "GHANA" "GIBRALTAR" "GREECE" "GREENLAND" "GRENADA" "GUADELOUPE" "GUAM" "GUATEMALA" "GUINEA" "GUINEA_BISSAU" "GUYANA" "HAITI" "HEARD_AND_MC_DONALD_ISLANDS" "VATICAN" "HONDURAS" "HONG_KONG" "HUNGARY" "ICELAND" "INDIA" "INDONESIA" "IRAN" "IRAQ" "IRELAND" "ISLE_OF_MAN" "ISRAEL" "ITALY" "JAMAICA" "JAPAN" "JORDAN" "KAZAKHSTAN" "KENYA" "KIRIBATI" "KOREA_NORTH" "KOREA" "KOSOVO" "KUWAIT" "KYRGYZSTAN" "LAOS" "LATVIA" "LEBANON" "LESOTHO" "LIBERIA" "LIBYA" "LIECHTENSTEIN" "LITHUANIA" "LUXEMBOURG" "MACAU" "MACAULL" "MACEDONIA" "MADAGASCAR" "MALAWI" "MALAYSIA" "MALDIVES" "MALI" "MALTA" "MARSHALL_ISLANDS" "MARTINIQUE" "MAURITANIA" "MAURITIUS" "MAYOTTE" "MEXICO" "MICRONESIA_FEDERATED_STATES_OF" "MOLDOVA_REPUBLIC_OF" "MONACO" "MONGOLIA" "MONTENEGRO" "MONTSERRAT" "MOROCCO" "MOZAMIBIQUE" "MYANMAR_BURMA" "NAMIBIA" "NAURU" "NEPAL" "NETHERLANDS" "NETHERLANDS_ANTILLES" "NEW_CALEDONIA" "NEW_ZEALAND" "NICARAGUA" "NIGER" "NIGERIA" "NIUE" "NORFOLK_ISLAND" "NORTHERN_MARIANA_ISLANDS" "NORWAY" "OMAN" "PAKISTAN" "PALAU" "PANAMA" "PAPUA_NEW_GUINEA" "PARAGUAY" "PERU" "PHILIPPINES" "PITCAIRN" "POLAND" "PORTUGAL" "PUERTO_RICO" "QATAR" "REUNION" "ROMANIA" "RUSSIA" "RWANDA" "SAINT_KITTS_AND_NEVIS" "SAINT_LUCIA" "SAINT_MARTIN" "SAINT_VINCENT_AND_THE_GRENADINES" "SAMOA" "SAN_MARINO" "SAO_TOME_AND_PRINCIPE" "SAUDI_ARABIA" "SENEGAL" "SERBIA" "SERBIA_MONTENEGRO" "SEYCHELLES" "SIERRA_LEONE" "SINGAPORE" "SLOVAKIA" "SLOVENIA" "SOLOMON_ISLANDS" "SOMALIA" "SOUTH_AFRICA" "SOUTH_GEORGIA_AND_SOUTH_SS" "SOUTH_SUDAN" "SPAIN" "SRI_LANKA" "ST_HELENA" "ST_PIERRE_AND_MIQUELON" "SUDAN" "SURINAME" "SVALBARD_AND_JAN_MAYEN_ISLANDS" "SWAZILAND" "SWEDEN" "SWITZERLAND" "SYRIA" "TAIWAN" "TAJIKISTAN" "TANZANIA_UNITED_REPUBLIC_OF" "THAILAND" "TOGO" "TOKELAU" "TONGA" "TRINIDAD_AND_TOBAGO" "TUNISIA" "TURKEY" "TURKMENISTAN" "TURKS_AND_CAICOS_ISLANDS" "TUVALU" "UGANDA" "UKRAINE" "UAE" "UNITED_KINGDOM" "UNITED_STATES" "URUGUAY" "US_MINOR_ISLANDS" "UZBEKISTAN" "VANUATU" "VENEZUELA" "VIETNAM" "VIRGIN_ISLANDS_BRITISH" "VIRGIN_ISLANDS_US" "WALLIS_AND_FUTUNA_ISLANDS" "WESTERN_SAHARA" "YEMEN" "ZAMBIA" "ZIMBABWE" "DEBUG" "DEMO" Example: country=UNITED_STATES Country |
| radioMode | string (RadioMode) Enum: "sensor" "b" "g" "bg" "gn" "bgn" "gnstrict" "gnx" "a" "an" "anstrict" "anc" "acstrict" "ancx" "ax6" "bridge" "gnxbe" "ancxbe" "ax6be" Example: radioMode=sensor Radio mode of the requested channel list |
| sn | string |
| txbf | boolean Boolean to indicate txBf of the request |
| radioIndex | integer (RadioIndex) [ 1 .. 3 ] Example: radioIndex=1 Optional radio index of the request. When radioIndex is not provided, it is derived from radioMode. For APs with dual-band radios, both radios can use the same radio mode, while allowing different channels and maximum Tx power. For example, the AP510 can operate both radios on the 5 GHz band. In this case, radioIndex=1 allows channels 36 to 64, and radioIndex=2 allows channels 100 to 165. |
| ocs | boolean Default: false Optional indication that the requested list of channels will be used for the Off Channel Scanning (OCS) list. The response will include a list of all channels with all supported channel widths. |
| sensor | boolean Default: false Optional indication that the requested list of channels will be used for the sensor channel list. The response will include a list of all channels for all radios with all supported channel widths. radioIndex is ignored. |
{- "custId": null,
- "id": null,
- "minTxPower": -1,
- "channelList": [
- {
- "custId": null,
- "id": null,
- "longForm": null,
- "maxTxPower": 0,
- "dfs": false,
- "channelNumber": 36,
- "radioBand": 1,
- "wth": false,
- "shortForm": null,
- "minTxPower": 0,
- "freq": 5180
}
]
}| country | string (Country) Deprecated Enum: "AFGHANISTAN" "ALBANIA" "ALGERIA" "AMERICAN_SAMOA" "ANDORRA" "ANGOLA" "ANGUILLA" "ANTARCTICA" "ANTIGUA_BARBUDA" "ARGENTINA" "ARMENIA" "ARUBA" "AUSTRALIA" "AUSTRIA" "AZERBAIJAN" "BAHAMAS" "BAHRAIN" "BANGLADESH" "BARBADOS" "BELARUS" "BELGIUM" "BELIZE" "BENIN" "BERMUDA" "BHUTAN" "BOLIVIA" "BONAIRE_SINT_EUSTATIUS_AND_SABA" "BOSNIA_HERZEGOVINA" "BOTSWANA" "BOUVET_ISLAND" "BRAZIL" "BRITISH_INDIAN_OCEAN_TERRITORY" "BRUNEI_DARUSSALAM" "BULGARIA" "BURKINA_FASO" "BURUNDI" "CAMBODIA" "CAMEROON" "CANADA" "CAPE_VERDE" "CAYMAN_ISLANDS" "CENTRAL_AFRICAN_REPUBLIC" "CHAD" "CHILE" "CHINA" "CHRISTMAS_ISLAND" "COCOS_KEELING_ISLANDS" "COLOMBIA" "COMOROS" "CONGO" "CONGO_THE_DRC" "COOK_ISLANDS" "COSTA_RICA" "IVORY_COAST" "CROATIA" "CUBA" "CURACAO" "CYPRUS" "CZECH" "DENMARK" "DJIBOUTI" "DOMINICA" "DOMINICAN" "EAST_TIMOR" "ECUADOR" "EGYPT" "EL_SALVADOR" "EQUATORIAL_GUINEA" "ERITREA" "ESTONIA" "ETHIOPIA" "FALKLAND_ISLANDS_MALVINAS" "FAEROE_ISLANDS" "FIJI" "FINLAND" "FRANCE" "FRANCE_METROPOLITAN" "FRENCH_GUIANA" "FRENCH_POLYNESIA" "FRENCH_SOUTHERN_TERRITORIES" "GABON" "GAMBIA" "GEORGIA" "GERMANY" "GHANA" "GIBRALTAR" "GREECE" "GREENLAND" "GRENADA" "GUADELOUPE" "GUAM" "GUATEMALA" "GUINEA" "GUINEA_BISSAU" "GUYANA" "HAITI" "HEARD_AND_MC_DONALD_ISLANDS" "VATICAN" "HONDURAS" "HONG_KONG" "HUNGARY" "ICELAND" "INDIA" "INDONESIA" "IRAN" "IRAQ" "IRELAND" "ISLE_OF_MAN" "ISRAEL" "ITALY" "JAMAICA" "JAPAN" "JORDAN" "KAZAKHSTAN" "KENYA" "KIRIBATI" "KOREA_NORTH" "KOREA" "KOSOVO" "KUWAIT" "KYRGYZSTAN" "LAOS" "LATVIA" "LEBANON" "LESOTHO" "LIBERIA" "LIBYA" "LIECHTENSTEIN" "LITHUANIA" "LUXEMBOURG" "MACAU" "MACAULL" "MACEDONIA" "MADAGASCAR" "MALAWI" "MALAYSIA" "MALDIVES" "MALI" "MALTA" "MARSHALL_ISLANDS" "MARTINIQUE" "MAURITANIA" "MAURITIUS" "MAYOTTE" "MEXICO" "MICRONESIA_FEDERATED_STATES_OF" "MOLDOVA_REPUBLIC_OF" "MONACO" "MONGOLIA" "MONTENEGRO" "MONTSERRAT" "MOROCCO" "MOZAMIBIQUE" "MYANMAR_BURMA" "NAMIBIA" "NAURU" "NEPAL" "NETHERLANDS" "NETHERLANDS_ANTILLES" "NEW_CALEDONIA" "NEW_ZEALAND" "NICARAGUA" "NIGER" "NIGERIA" "NIUE" "NORFOLK_ISLAND" "NORTHERN_MARIANA_ISLANDS" "NORWAY" "OMAN" "PAKISTAN" "PALAU" "PANAMA" "PAPUA_NEW_GUINEA" "PARAGUAY" "PERU" "PHILIPPINES" "PITCAIRN" "POLAND" "PORTUGAL" "PUERTO_RICO" "QATAR" "REUNION" "ROMANIA" "RUSSIA" "RWANDA" "SAINT_KITTS_AND_NEVIS" "SAINT_LUCIA" "SAINT_MARTIN" "SAINT_VINCENT_AND_THE_GRENADINES" "SAMOA" "SAN_MARINO" "SAO_TOME_AND_PRINCIPE" "SAUDI_ARABIA" "SENEGAL" "SERBIA" "SERBIA_MONTENEGRO" "SEYCHELLES" "SIERRA_LEONE" "SINGAPORE" "SLOVAKIA" "SLOVENIA" "SOLOMON_ISLANDS" "SOMALIA" "SOUTH_AFRICA" "SOUTH_GEORGIA_AND_SOUTH_SS" "SOUTH_SUDAN" "SPAIN" "SRI_LANKA" "ST_HELENA" "ST_PIERRE_AND_MIQUELON" "SUDAN" "SURINAME" "SVALBARD_AND_JAN_MAYEN_ISLANDS" "SWAZILAND" "SWEDEN" "SWITZERLAND" "SYRIA" "TAIWAN" "TAJIKISTAN" "TANZANIA_UNITED_REPUBLIC_OF" "THAILAND" "TOGO" "TOKELAU" "TONGA" "TRINIDAD_AND_TOBAGO" "TUNISIA" "TURKEY" "TURKMENISTAN" "TURKS_AND_CAICOS_ISLANDS" "TUVALU" "UGANDA" "UKRAINE" "UAE" "UNITED_KINGDOM" "UNITED_STATES" "URUGUAY" "US_MINOR_ISLANDS" "UZBEKISTAN" "VANUATU" "VENEZUELA" "VIETNAM" "VIRGIN_ISLANDS_BRITISH" "VIRGIN_ISLANDS_US" "WALLIS_AND_FUTUNA_ISLANDS" "WESTERN_SAHARA" "YEMEN" "ZAMBIA" "ZIMBABWE" "DEBUG" "DEMO" Example: country=UNITED_STATES Country |
| hwType | string Deprecated Hardware Type |
| radioIndex | integer (RadioIndex) [ 1 .. 3 ] Example: radioIndex=1 Radio index of the radio mode request |
| sn | string |
{- "channelPlanList": null,
- "radioModeList": [
- {
- "custId": null,
- "id": null,
- "mode": "bg",
- "channelwidthList": [
- "Ch1Width_20MHz"
]
}
]
}| radioBand | string (RadioBand) Enum: "Band5" "Band6" "Band24" "BandNONE" Example: radioBand=Band5 |
{- "custId": null,
- "id": null,
- "minTxPower": -1,
- "channelList": [
- {
- "custId": null,
- "id": null,
- "longForm": null,
- "maxTxPower": 0,
- "dfs": false,
- "channelNumber": 36,
- "radioBand": 1,
- "wth": false,
- "shortForm": null,
- "minTxPower": 0,
- "freq": 5180
}
]
}A valid PolicyRateLimiterElement instance
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string The rate limiter's unique identifier. Validations : The name must be a not null and non-empty string between 1 and 64 characters long. Valid character set : Alphanumeric, special characters except semi-colon, colon, and ampersand |
| cirKbps required | number The rate limiter's average rate (CIR) expressed in kbps. Must be a positive integer. Validations : The value must be between 128 and 25000, or 0 Kbps for unlimited. |
{- "custId": null,
- "id": "75b777e6-0557-11e9-99f4-000c29a7fe8f",
- "canDelete": true,
- "canEdit": true,
- "name": "aaa",
- "cirKbps": 25000
}{- "custId": null,
- "id": "75b777e6-0557-11e9-99f4-000c29a7fe8f",
- "canDelete": true,
- "canEdit": true,
- "name": "aaa",
- "cirKbps": 25000
}| rateLimiterId required | string A non-empty, valid RateLimiter Id |
{- "custId": null,
- "id": "75b777e6-0557-11e9-99f4-000c29a7fe8f",
- "canDelete": true,
- "canEdit": true,
- "name": "aaa",
- "cirKbps": 25000
}| rateLimiterId required | string A non-empty, valid RateLimiter Id |
A valid PolicyRateLimiterElement with the configured parameters
| custId | string |
| id | string <uuid> |
| canDelete | boolean |
| canEdit | boolean |
| name required | string The rate limiter's unique identifier. Validations : The name must be a not null and non-empty string between 1 and 64 characters long. Valid character set : Alphanumeric, special characters except semi-colon, colon, and ampersand |
| cirKbps required | number The rate limiter's average rate (CIR) expressed in kbps. Must be a positive integer. Validations : The value must be between 128 and 25000, or 0 Kbps for unlimited. |
{- "custId": null,
- "id": "75b777e6-0557-11e9-99f4-000c29a7fe8f",
- "canDelete": true,
- "canEdit": true,
- "name": "aaa",
- "cirKbps": 25000
}{- "custId": null,
- "id": "75b777e6-0557-11e9-99f4-000c29a7fe8f",
- "canDelete": true,
- "canEdit": true,
- "name": "aaa",
- "cirKbps": 25000
}| rateLimiterId required | string A non-empty, valid RateLimiter Id |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}A valid ReportTemplateElement instance with all of the mandatory attributes
| id | string <uuid> |
| name | string The name of the report template. |
object (CustomTemplateElement) This POJO is used to configure a custom template. | |
| creationTimeStamp | number Report template creation timestamp. The timestamp is milliseconds since epoch. |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "customTemplate": {
- "widgets": [
- {
- "id": "string",
- "filter": "all"
}
]
}, - "creationTimeStamp": 0
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "customTemplate": {
- "widgets": [
- {
- "id": "string",
- "filter": "all"
}
]
}, - "creationTimeStamp": 0
}| templateId required | string <uuid> A non-empty, valid template ID |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "customTemplate": {
- "widgets": [
- {
- "id": "string",
- "filter": "all"
}
]
}, - "creationTimeStamp": 0
}| templateId required | string <uuid> A non-empty, valid template ID. |
A valid template with the configured parameters
| id | string <uuid> |
| name | string The name of the report template. |
object (CustomTemplateElement) This POJO is used to configure a custom template. | |
| creationTimeStamp | number Report template creation timestamp. The timestamp is milliseconds since epoch. |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "customTemplate": {
- "widgets": [
- {
- "id": "string",
- "filter": "all"
}
]
}, - "creationTimeStamp": 0
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "customTemplate": {
- "widgets": [
- {
- "id": "string",
- "filter": "all"
}
]
}, - "creationTimeStamp": 0
}| templateId required | string <uuid> A non-empty, valid template ID |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
- "name": "string",
- "creator": "string",
- "scope": "e05edccd-bcd5-4ba0-9c67-cc7a99bc56e2",
- "period": {
- "value": "None",
- "start": 0,
- "end": 0
}, - "format": "Pdf",
- "generatedReportAction": "Store",
- "runNow": true,
- "status": "Queued",
- "creationTimestamp": 0,
- "title": "string",
- "userGroups": [
- {
- "name": "string",
- "selection": "string"
}
]
}
]| id | string <uuid> The ID of the report |
| templateId | string <uuid> The ID of the report template |
| name | string The name of the user report |
| creator | string The ID of the user who scheduled the report |
| scope | string <uuid> For reports per site - Site ID. For system-wide reports - null. |
object (PeriodElement) This POJO is used to configure the Period information. | |
| format | string (ReportFormat) Enum: "Pdf" "ZippedCsv" Report Format |
| generatedReportAction | string (GeneratedReportAction) Enum: "Store" "Email" "StoreAndEmail" |
| runNow | boolean A flag indicating that the report will be generated now. The schedule of this report cannot be edited. |
| status | string (UserReportStatus) Enum: "Queued" "Started" "Completed" |
| creationTimestamp | number The timestamp of when the scheduled report was created |
| title | string The report title to be included in the generated output |
Array of objects (UserGroupElement) |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
- "name": "string",
- "creator": "string",
- "scope": "e05edccd-bcd5-4ba0-9c67-cc7a99bc56e2",
- "period": {
- "value": "None",
- "start": 0,
- "end": 0
}, - "format": "Pdf",
- "generatedReportAction": "Store",
- "runNow": true,
- "status": "Queued",
- "creationTimestamp": 0,
- "title": "string",
- "userGroups": [
- {
- "name": "string",
- "selection": "string"
}
]
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
- "name": "string",
- "creator": "string",
- "scope": "e05edccd-bcd5-4ba0-9c67-cc7a99bc56e2",
- "period": {
- "value": "None",
- "start": 0,
- "end": 0
}, - "format": "Pdf",
- "generatedReportAction": "Store",
- "runNow": true,
- "status": "Queued",
- "creationTimestamp": 0,
- "title": "string",
- "userGroups": [
- {
- "name": "string",
- "selection": "string"
}
]
}| reportId required | string <uuid> A non-empty, valid report ID |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
- "name": "string",
- "creator": "string",
- "scope": "e05edccd-bcd5-4ba0-9c67-cc7a99bc56e2",
- "period": {
- "value": "None",
- "start": 0,
- "end": 0
}, - "format": "Pdf",
- "generatedReportAction": "Store",
- "runNow": true,
- "status": "Queued",
- "creationTimestamp": 0,
- "title": "string",
- "userGroups": [
- {
- "name": "string",
- "selection": "string"
}
]
}| reportId required | string <uuid> A non-empty, valid report ID |
A valid report template with the configured parameters
| id | string <uuid> The ID of the report |
| templateId | string <uuid> The ID of the report template |
| name | string The name of the user report |
| creator | string The ID of the user who scheduled the report |
| scope | string <uuid> For reports per site - Site ID. For system-wide reports - null. |
object (PeriodElement) This POJO is used to configure the Period information. | |
| format | string (ReportFormat) Enum: "Pdf" "ZippedCsv" Report Format |
| generatedReportAction | string (GeneratedReportAction) Enum: "Store" "Email" "StoreAndEmail" |
| runNow | boolean A flag indicating that the report will be generated now. The schedule of this report cannot be edited. |
| status | string (UserReportStatus) Enum: "Queued" "Started" "Completed" |
| creationTimestamp | number The timestamp of when the scheduled report was created |
| title | string The report title to be included in the generated output |
Array of objects (UserGroupElement) |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
- "name": "string",
- "creator": "string",
- "scope": "e05edccd-bcd5-4ba0-9c67-cc7a99bc56e2",
- "period": {
- "value": "None",
- "start": 0,
- "end": 0
}, - "format": "Pdf",
- "generatedReportAction": "Store",
- "runNow": true,
- "status": "Queued",
- "creationTimestamp": 0,
- "title": "string",
- "userGroups": [
- {
- "name": "string",
- "selection": "string"
}
]
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
- "name": "string",
- "creator": "string",
- "scope": "e05edccd-bcd5-4ba0-9c67-cc7a99bc56e2",
- "period": {
- "value": "None",
- "start": 0,
- "end": 0
}, - "format": "Pdf",
- "generatedReportAction": "Store",
- "runNow": true,
- "status": "Queued",
- "creationTimestamp": 0,
- "title": "string",
- "userGroups": [
- {
- "name": "string",
- "selection": "string"
}
]
}| reportId required | string <uuid> A non-empty, valid report ID |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
- "name": "string",
- "creator": "string",
- "scope": "e05edccd-bcd5-4ba0-9c67-cc7a99bc56e2",
- "period": {
- "value": "None",
- "start": 0,
- "end": 0
}, - "format": "Pdf",
- "generatedReportAction": "Store",
- "runNow": true,
- "status": "Queued",
- "creationTimestamp": 0,
- "title": "string",
- "userGroups": [
- {
- "name": "string",
- "selection": "string"
}
]
}Get a list of generated user reports
[- {
- "name": "string",
- "location": "string",
- "creator": "string",
- "templateName": "string",
- "generationTimestamp": 0,
- "reportId": "836df459-dc40-4aa1-972a-6eb0a864dff9",
- "type": "Pdf",
- "reportFileName": "string",
- "reportFriendlyName": "string"
}
]| filename required | string A non-empty, valid file name |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| filename required | string A non-empty, valid filename. |
{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}A non-empty, valid list of generated report files
[- "string"
]{- "errors": [
- {
- "errorCode": 404,
- "errorMessage": "AP Platform not found",
- "resource": "/platformmanager/v1/upgrades/apimages/setdefault"
}
]
}| scope | stringall|utilization|switch|clients|captive_portal... Scope is category of charts. If not provided, default to All |
[- {
- "id": "string",
- "filters": [
- "string"
], - "pages": [
- "string"
]
}
]| duration | string3H|3D|14D Default: "3H" Example: duration=3H duration |
| widgetList | string Example: widgetList=topClientsByUsage|2_4,worstClientsByUsage|5 |
{- "apUpDownAssignmentReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "ApUpDownAssignment",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554313066068.005,
- "statistics": [
- {
- "unit": null,
- "count": 0,
- "values": [
- {
- "timestamp": 1554302521602.1274,
- "numPoints": 22,
- "value": "22"
}
], - "statName": "Total",
- "type": "number"
}, - {
- "unit": null,
- "count": 0,
- "values": [
- {
- "timestamp": 1554302521602.1274,
- "numPoints": 18,
- "value": "18",
- "statName": "Up",
- "type": "number"
}
]
}, - {
- "unit": null,
- "count": 0,
- "values": [
- {
- "timestamp": 1554302521602.1274,
- "numPoints": 2,
- "value": "2",
- "statName": "Down",
- "type": "number"
}
]
}, - {
- "unit": null,
- "count": 0,
- "values": [
- {
- "timestamp": 1554302521602.1274,
- "numPoints": 2,
- "value": "2",
- "statName": "Not Assigned",
- "type": "number"
}
]
}
], - "band": "all",
- "legacy": false
}
], - "apCurrentUpDownAssignmentReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "ApUpDownAssignment",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "TotalAp",
- "name": "Total",
- "value": 22
}, - {
- "id": "ApUp",
- "name": "Up",
- "value": 18
}, - {
- "id": "ApDown",
- "name": "Down",
- "value": 2
}, - {
- "id": "ApNotAssigned",
- "name": "Not Assigned",
- "value": 2
}
]
}
], - "throughputReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554313066068.005,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554302521602.1274,
- "numPoints": 3696635.2,
- "value": "3696635.2000000002"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554313066068.005,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554302281602.1274,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554313066068.005,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554302281602.1274,
- "numPoints": 8,
- "value": "8"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topSitesByThroughput": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Sites by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ThornhillDistributed",
- "name": "ThornhillDistributed",
- "value": 558606.0955555555
}
]
}
], - "topSitesByClientCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Sites by Unique User Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "DevelopmentLab7",
- "name": "DevelopmentLab7",
- "value": [
- 22
]
}
]
}
], - "topAccessPointsByThroughput": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Access Points by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Lab7-AP2-ap8533-9A258C",
- "name": "Lab7-AP2-ap8533-9A258C",
- "value": 529307.9585185185
}
]
}
], - "topAccessPointsByUserCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Access Points by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ap7632-2501B1",
- "name": "ap7632-2501B1",
- "value": 9
}
]
}
], - "topServicesByThroughput": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Networks by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ecaopen",
- "name": "ecaopen",
- "value": 573624.8177777778
}
]
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 529307.9585185185
}
]
}
], - "worstSitesByThroughput": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Sites by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ThornhillCentralized",
- "name": "ThornhillCentralized",
- "value": 277.21777777777777
}
]
}
], - "worstSitesByClientCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Sites by Unique User Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "BlackstoneWing",
- "name": "BlackstoneWing",
- "value": [
- 2
]
}
]
}
], - "worstAccessPointsByThroughput": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Access Points by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Lab7-AP3-ap7632-250A26",
- "name": "Lab7-AP3-ap7632-250A26",
- "value": 0
}
]
}
], - "worstAccessPointsByUserCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Access Points by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "1703Y-1411400000",
- "name": "1703Y-1411400000",
- "value": 1
}
]
}
], - "worstServicesByThroughput": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Networks by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ecaopenwing0",
- "name": "ecaopenwing0",
- "value": 0
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "DA:84:66:BF:6B:20",
- "name": "DA:84:66:BF:6B:20",
- "value": 0
}
]
}
], - "topSitesByConcurrentUserCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Sites by Concurrent User Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "DevelopmentLab7",
- "name": "DevelopmentLab7",
- "value": [
- 9
]
}
]
}
], - "worstSitesByConcurrentClientCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Sites by Concurrent User Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "BlackstoneWing",
- "name": "BlackstoneWing",
- "value": [
- 1
]
}
]
}
], - "topAccessPointsByConcurrentUserCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Devices by Concurrent User Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ap7632-250143",
- "name": "ap7632-250143",
- "value": 4
}
]
}
], - "worstAccessPointsByConcurrentUserCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Devices by Concurrent User Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "1703Y-1411400000",
- "name": "1703Y-1411400000",
- "value": 1
}
]
}
], - "topServicesByConcurrentClientCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Networks by Concurrent Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ecaopen",
- "name": "ecaopen",
- "value": [
- 11
]
}
]
}
], - "worstServicesByConcurrentClientCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Networks by Concurrent Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "bap-test-1",
- "name": "bap-test-1",
- "value": [
- 1
]
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "DA:84:66:BF:6B:20",
- "name": "DA:84:66:BF:6B:20",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 714565744
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 19
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 19
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Android",
- "name": "Android",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Android",
- "name": "Android",
- "value": [
- 1
]
}
]
}
], - "topServicesByClientCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Networks by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ecaopen",
- "name": "ecaopen",
- "value": [
- 21
]
}
]
}
], - "worstServicesByClientCount": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Networks by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "bap-test-1",
- "name": "bap-test-1",
- "value": [
- 2
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 14
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 72399.52586737223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 21
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Streaming",
- "name": "Streaming",
- "value": 1.8064641373377832
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Streaming",
- "name": "Streaming",
- "value": 2412
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 96668211
}
]
}
], - "guestUsersReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Associated Guests",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554313066068.005,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554313066068.005,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "NoData",
- "type": [
- "number"
]
}
], - "band": "all"
}
], - "dwellTimeReport": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Guest Dwell Time",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "sort": 0,
- "duration": "0.0-10.0min",
- "guest_login": 0,
- "total": 0,
- "self_signup": 0,
- "cng": 0,
- "twitter_count": 0,
- "facebook_count": 0,
- "automac": 0,
- "google_count": 0
}
]
}
], - "topSitesBySnr": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Sites by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "DevelopmentLab7",
- "name": "DevelopmentLab7",
- "value": 56.1
}
]
}
], - "topSitesByChannelUtil": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Sites by Channel Utilization",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "%",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ThornhillCentralized",
- "name": "ThornhillCentralized",
- "value": 57.8
}
]
}
], - "worstSitesByChannelUtil": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Bottom Sites by Channel Utilization",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "%",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "",
- "name": "",
- "value": 0
}
]
}
], - "worstSitesBySnr": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Bottom Sites by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "",
- "name": "",
- "value": 0
}
]
}
], - "worstSitesByRetries": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Bottom Sites by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "BlackstoneWing",
- "name": "BlackstoneWing",
- "value": 0
}
]
}
], - "topSitesByChannelChanges": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Sites by Channel Changes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [ ]
}
], - "topSitesByPowerChanges": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Sites by Power Changes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "ThornhillCentralized",
- "name": "ThornhillCentralized",
- "value": 47
}
]
}
], - "topSitesByRetries": [
- {
- "fromTimeInMillis": 1554302266068.005,
- "reportName": "Top Sites by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554313066068.005,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "BlackstoneWing",
- "name": "BlackstoneWing",
- "value": 0
}
]
}
], - "networkHealth": {
- "primaryActiveAPs": 17,
- "backupActiveAPs": 7,
- "inactiveAPs": 14,
- "lowPowerAPs": 0,
- "globalSyncStatus": "Synchronized",
- "mobilityStatus": false,
- "linkStatus": "Up",
- "syncResult": "",
- "activeSWs": 1,
- "inactiveSWs": 0,
- "troubleSWs": 0
}, - "deploymentQoE": [
- {
- "reportName": "Deployment QoE",
- "reportType": "Distribution",
- "unit": "",
- "listBad": [ ],
- "listAverage": [
- {
- "siteName": "ThornhillDistributed",
- "siteQoE": 2.2
}
], - "listGood": [
- {
- "siteName": "BlackstoneWing",
- "siteQoE": 3.3
}
], - "listExcellent": [ ],
- "enable": 1,
- "numSitesTailofQoE": 2,
- "labelSitesTailofQoE": "Average",
- "sitesQoEdistribution": [
- {
- "id": "Bad",
- "name": "Bad",
- "value": 0,
- "fracttionofTime": 2,
- "fracttionofTimeLower": 0,
- "fracttionofTimeHigher": 0,
- "clients": 0,
- "totalClients": 0,
- "clientPercentage": 0
}
]
}
], - "packetCaptureList": [
- {
- "reportType": "Table",
- "tableData": {
- "columnNames": [
- "Status"
], - "rowData": [ ]
}, - "reportName": "Packet Capture Instances"
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 |
| duration | string3H|3D|14D Default: "3H" Example: duration=3H |
| widgetList | string Example: widgetList=throughputReport|2_4,byteUtilization|5 |
{- "deviceSerialNo": "1740W-2030400000",
- "timeStamp": 1554476614000,
- "channelWidth": [
- "Ch1Width_20MHz: 1"
], - "entitlementStatus": 0,
- "bandAndChannel": {
- "1740W-2030400000.1740W-2030400000/2.radDrmNoDrmCurrentChannel": 16783001,
- "1740W-2030400000.1740W-2030400000/1.radDrmNoDrmCurrentChannel": 16779653
}, - "activeAlerts": [ ],
- "wirelessProtocols": [
- 18
], - "wiredClientCount": 0,
- "hwType": "AP-7612-680B30-WR",
- "deviceHealth": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "qualityMetric": null,
- "currentPowerLevel": {
- "1740W-2030400000.1740W-2030400000/2.radCurrentPower": 4,
- "1740W-2030400000.1740W-2030400000/1.radCurrentPower": 4
}, - "swVersion": "5.9.3.2-002R",
- "ipAddress": "10.47.75.108",
- "location": "DevelopmentLab7",
- "macAddress": "B8:50:01:3B:3E:1C",
- "camIpAddress": null,
- "ethPowerStatus": null,
- "throughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466202074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 1,
- "value": "1"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 382059.37111111113
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 515780151
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Wireless Access Point",
- "name": "Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Extreme IdentiFi Wireless Access Point",
- "name": "Extreme IdentiFi Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 2
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 4
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "rfQuality": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RF Quality",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "unit": "",
- "statistics": [
- {
- "unit": "",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3,
- "value": "3"
}
], - "statName": "Unique RFQI",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization2_4": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 2.4GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 5GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "noisePerRadio": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Noise Per Channel",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": -97,
- "value": "-97"
}
], - "statName": "R1",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "ratioOfCurrentUsersToBand": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Load Per Radio",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "2.4 GHz",
- "name": "2.4 GHz",
- "value": 2
}
]
}
], - "topClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 71.5
}
]
}
], - "worstClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "22:B3:99:9C:87:98",
- "name": "22:B3:99:9C:87:98",
- "value": 37
}
]
}
], - "topClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "baseliningAPRFQI": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RFQI",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "Link Quality",
- "statistics": [
- {
- "unit": "Link Quality",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3.5,
- "value": "3.5"
}
], - "statName": "RFQI Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRss": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RSS",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dBm",
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": -63,
- "value": "-63.0"
}
], - "statName": "Rss Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPTxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Tx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 71500000,
- "value": "71500000.0"
}
], - "statName": "TxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRxRate": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Rx Rate",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 13500000,
- "value": "13500000.0"
}
], - "statName": "RxRate Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Retries",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "statistics": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466081773.8772,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Retries Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference 2.4 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPCochannel_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Cochannel 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Cochannel",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPClientData_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Data 5 GHz",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base ClientData",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPInterference_5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Interference",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "%",
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "Base Interference",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "apQoE": [
- {
- "reportName": "AP QoE Baseline",
- "reportType": "Distribution",
- "unit": "",
- "listBad": [ ],
- "listAverage": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.4
}
], - "listGood": [
- {
- "clientName": "02:02:6F:E9:92:28",
- "clientQoE": 2.6
}
], - "listExcellent": [ ],
- "enable": 1,
- "fromTimeInMillis": 1554465844581.09,
- "toTimeInMillis": 1554476644581.09,
- "apQoEseries": [
- {
- "unit": "#",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465600000,
- "numPoints": 2.379628627405675,
- "value": "2.3796286274056748"
}
], - "statName": "apQoE_Base",
- "type": "number",
- "connectto": "b"
}
], - "clientsQoEdistribution": [
- {
- "id": "Bad",
- "name": "Bad",
- "value": 0,
- "fracttionofTime": 0,
- "fracttionofTimeLower": 25,
- "fracttionofTimeHigher": 100,
- "clients": 0,
- "totalClients": 5,
- "clientPercentage": 0
}
]
}
]
}| apSerialNumber required | string (SerialNumber) ^[\p{Print}&&[^
;:&\p{Cntrl}'"]]{1,16}$ Example: 1730Y-1007800000 |
| duration | string3H|3D|14D Default: "3H" Example: duration=3H |
{- "deviceSerialNo": "1740W-2030400000",
- "timeStamp": 1554476614000,
- "channelWidth": [
- "Ch1Width_20MHz: 1"
], - "entitlementStatus": 0,
- "bandAndChannel": {
- "1740W-2030400000.1740W-2030400000/2.radDrmNoDrmCurrentChannel": 16783001,
- "1740W-2030400000.1740W-2030400000/1.radDrmNoDrmCurrentChannel": 16779653
}, - "activeAlerts": [ ],
- "wirelessProtocols": [
- 18
], - "wiredClientCount": 0,
- "hwType": "AP-7612-680B30-WR",
- "deviceHealth": {
- "operationalStatus": "InService",
- "troubles": [ ]
}, - "qualityMetric": null,
- "currentPowerLevel": {
- "1740W-2030400000.1740W-2030400000/2.radCurrentPower": 4,
- "1740W-2030400000.1740W-2030400000/1.radCurrentPower": 4
}, - "swVersion": "5.9.3.2-002R",
- "ipAddress": "10.47.75.108",
- "location": "DevelopmentLab7",
- "macAddress": "B8:50:01:3B:3E:1C",
- "camIpAddress": null,
- "ethPowerStatus": null,
- "throughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Throughput",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bps",
- "count": 0,
- "values": [
- {
- "timestamp": 1554466202074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "download",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "byteUtilization": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Usage",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "bytes",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 0,
- "value": "0.0"
}
], - "statName": "tntRxBytes",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "countOfUniqueUsersReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Count of unique clients",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "resolutionInDays": 0,
- "statistics": [
- {
- "unit": "users",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 1,
- "value": "1"
}
], - "statName": "tntUniqueUsers",
- "type": "number"
}
], - "band": "all"
}
], - "topUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 382059.37111111113
}
]
}
], - "worstUsersByThroughput": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "topClientsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Usage",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 515780151
}
]
}
], - "topManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "topOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Unknown",
- "name": "Unknown",
- "value": [
- 5
]
}
]
}
], - "worstManufacturersByClientCount": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Device Types by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Wireless Access Point",
- "name": "Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "worstOsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Operating Systems by Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Extreme IdentiFi Wireless Access Point",
- "name": "Extreme IdentiFi Wireless Access Point",
- "value": [
- 1
]
}
]
}
], - "clientDistributionByRFProtocol": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Protocols by Unique Client Count",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "11ac",
- "name": "11ac",
- "value": [
- 2
]
}
]
}
], - "topAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "topAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 4
}
]
}
], - "worstAppGroupsByThroughputReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Throughput",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bps",
- "band": "all",
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 6.73788631912223
}
]
}
], - "worstAppGroupsByClientCountReport": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst Application Groups by Client Count Report",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "CloudComputing",
- "name": "CloudComputing",
- "value": 0
}
]
}
], - "worstAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Worst App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "topAppGroupsByUsage": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top App Groups by Bytes",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "bytes",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "Protocols",
- "name": "Protocols",
- "value": 8893
}
]
}
], - "rfQuality": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RF Quality",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "unit": "",
- "statistics": [
- {
- "unit": "",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3,
- "value": "3"
}
], - "statName": "Unique RFQI",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization2_4": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 2.4GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "channelUtilization5": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Channel Utilization 5GHz",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "%",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": 0,
- "value": "0"
}
], - "statName": "Interference",
- "type": "number"
}
], - "band": "all"
}
], - "noisePerRadio": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Noise Per Channel",
- "reportType": "Timeseries",
- "toTimeInMillis": 1554476644581.09,
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962150.526,
- "numPoints": -97,
- "value": "-97"
}
], - "statName": "R1",
- "type": "number"
}
], - "band": "all",
- "legacy": false
}
], - "ratioOfCurrentUsersToBand": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Client Load Per Radio",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "users",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "2.4 GHz",
- "name": "2.4 GHz",
- "value": 2
}
]
}
], - "topClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "78:0C:B8:36:C2:4D",
- "name": "78:0C:B8:36:C2:4D",
- "value": 71.5
}
]
}
], - "worstClientsBySnr": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by SNR",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dB",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "22:B3:99:9C:87:98",
- "name": "22:B3:99:9C:87:98",
- "value": 37
}
]
}
], - "topClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Top Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "worstClientsByRetries": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "Bottom Clients by Retries",
- "reportType": "Distribution",
- "toTimeInMillis": 1554476644581.09,
- "unit": "#",
- "band": "all",
- "legacy": false,
- "tableData": null,
- "distributionStats": [
- {
- "id": "02:02:6F:E9:92:28",
- "name": "02:02:6F:E9:92:28",
- "value": 0
}
]
}
], - "baseliningAPRFQI": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RFQI",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "Link Quality",
- "statistics": [
- {
- "unit": "Link Quality",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,
- "numPoints": 3.5,
- "value": "3.5"
}
], - "statName": "RFQI Base ",
- "type": "number",
- "connectto": "b"
}
], - "band": "all"
}
], - "baseliningAPRss": [
- {
- "fromTimeInMillis": 1554465844581.09,
- "reportName": "RSS",
- "reportType": "TimeseriesPercentile",
- "toTimeInMillis": 1554476644581.09,
- "unit": "dBm",
- "statistics": [
- {
- "unit": "dBm",
- "count": 0,
- "values": [
- {
- "timestamp": 1554465962074.1123,