WiFi logs

WiFi Connections represent every single instance a Contact connect to a WiFi service, either via captive portal, WiFi SDK, WPA2 Enterprise or Passpoint.

List all WiFi Connections of the organization

Retrieve all WiFi connection of the organization Role: Organization Manager Scope: organization_read, customer_read

GEThttps://explore.cloud4wi.com//v2/organizations/{cid}/accountings
Path parameters
cid*string

id of the organization (aka tenant)

Query parameters
Response

Array with the list of WiFi Connections

Body
generatedstring
sIdstring
countnumber
connectionsarray of object
Request
const response = await fetch('https://explore.cloud4wi.com//v2/organizations/{cid}/accountings', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "generated": "text",
  "sId": "text",
  "count": 0,
  "connections": [
    {
      "customerId": "text",
      "organizationId": "text",
      "start": "text",
      "startBusiness": "text",
      "stop": "text",
      "stopBusiness": "text",
      "duration": 0,
      "traffic": 0,
      "locationName": "text",
      "locationId": "text",
      "hotspotName": "text",
      "hotspotIdentifier": "text",
      "hotspotId": "text",
      "latitude": 0,
      "longitude": 0,
      "macAddressClient": "text",
      "ipAddressClient": "text",
      "terminateCause": "text"
    }
  ]
}

Last updated