v1
latestOpenAPI 3.0.02026-07-243339471.1 MBGet a list of WLANs
This API endpoint retrieves a list of WLANs associated to a customer, based on the query parameters provided. Each WLAN in the returned list includes comprehensive details like name, security level, band, status, and VLAN configuration. The query parameters allow you to narrow down the results to WLANs that meet specific criteria, ensuring you receive only the relevant data.
Query parameters
Id of a site where devices are associated.
ID of the Site for which access point related information is requested
The device serial number.
Serial number of an access point device.
OData Version 4.0 filter string (limited functionality). Supports only 'and' conjunction ('or' and 'not' are NOT supported). Supported fields and operators are in the below given table.
| Field | Operators |
|---|---|
| band | eq and in |
The operators are implemented as follows:
-
eq: Only values exactly matching the given value are returned.
-
in: Only values present in the given list are returned.
A comma-separated list of sort expressions. Each sort expression is a property name optionally followed by a direction indicator asc (ascending) or desc (descending).
The first sort expression in the list defines the primary sort order, the second defines the secondary sort order, and so on. If a direction indicator is omitted the default direction is ascending. By default, the response is sorted in ascending order by WLAN name.
Supported fields are wlanName, band, status, securityLevel, security, and vlan.
Specifies the maximum number of WLANs returned in the response.
Specifies the pagination cursor for the next page of resources.
Specifies the pagination cursor for the next page of resources.
The minimum value: 1
Response
List of WLANs with comprehensive details, including filtering and pagination support.
Example response
{
"items": [
{
"wlanName": "wlan1",
"securityLevel": "Personal",
"security": "Enhanced Open",
"band": "2.4 GHz, 5 GHz",
"status": "ENABLED",
"vlan": "1",
"id": "wlans/wlan1",
"type": "network-monitoring/access-point-monitoring"
}
],
"count": 1,
"total": 1,
"next": null
}