recently_probed_ssids

Recently Probed SSIDs

Recently probed SSIDs are the ones that are the operating SSIDs of the AP with which client is associated. The call gives the details of the probed SSID type, if hotspot connection is valid and if it is vulnerable to attacks.

JSON Table

Attribute Data Type Description
hotspot Boolean A true or false value indicates whether the SSID is hotspot.
ssid String Name of SSID.
vulnerable Boolean A true or false value indicates whether the SSID is vulnerable or not.

Copy Sample JSON
Sample JSON
[{
   "hotspot": false,
   "ssid": "Spectrum",
   "vulnerable": false
   }, 
   {
      "hotspot": false,
      "ssid": "Spectrum-a",
      "vulnerable": false
   }
]
API Calls

/V5/devices/clients/{boxid}/recentlyprobedssids

Get Recently Probed SSIDs

Description This API is used to fetch recently probed ssids by a client.
Users with the following roles can call this API: super user, administrator, operator, and viewer.
Syntax
GET <Base_URL>/devices/clients/{boxid}/recentlyprobedssids?boxid=<value>

Here,

  • boxid

    It is used to specify the client box ID. It takes an Integer value. To retrieve the appropriate boxid refer Clients .

Sample code
GET https://training.mojonetworks.com/new/webservice/V5/devices/clients/162623
/recentlyprobedssids
Request Body  This API call does not require any request body parameters.
Response Body If the API call is successful, the HTTP response status is 200.
The response body contains recently associated probed ssids to a client in the application/json format.