WLANS
WLAN is a wireless computer network that links two or more devices with wireless communication between them in a small area like school, home or office. It helps to fetch the WiFi profiles available on Mojo server. For the particular API, the user can fetch the details of the WLANs that are in active state using the “active” filter and also based on the frequency band. The active WLAN on a particular frequency band like 2.4 GHZ, 5 GHZ or any can be easily retrieved by applying those filters. GetWLAN call gives the information about the no of clients, usage and no. of radios connected to it.
API Calls
/V5/wlans
JSON Table
Attribute | Data Type | Description |
---|---|---|
ssidProfileId | int | Uniqure identifier to identify SSID profile. |
ssid | String | SSID profile name. |
numberOfBGClients | int | Number of clients connected on BG band . |
numberOfAClients | int | Number of client connected on A band. |
uplinkUsage | int | Up link data usage in KB. |
downlinkUsage | int | Down link data usage in KB. |
security | int | Security mode. Applicable types are:
|
securityType | String | Authentication method (PSK ,802.1X, etc.) |
numberOfBGRadios | int | Number of BG radios on which profile is applied. |
numberOfARadios | int | Number of BG radios on which profile is applied. |
locationId | application/json | Location information on which SSID profile is created. The value is of the type Location ID JSON. |
mncTemplateId | int | Unique template ID assigned to SSID profile to uniquely identify it on child server(If SSID profile is created on parent server). |
Sample JSON
[{ "ssidProfileId": 3, "ssid": "Documentation", "numberOfBGClients": 0, "numberOfAClients": 0, "uplinkUsage": 0, "downlinkUsage": 0, "security": 3, "securityType": "PSK", "numberOfBGRadios": 0, "numberOfARadios": 0, "locationId": { "type": "locallocationid", "id": 0 }, "mncTemplateId": 0, "numberOfDevices": 0 }]