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

get

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

Authorizations
Path parameters
cidstringRequired

id of the organization (aka tenant)

Query parameters
sidstringOptional

The sid can be used to retrieve a large number of results from a search request. Read here to get more information about how to use the sid

sizestringOptional

Number of WiFi Connections returned by the request. Allowed values between 1 and 10000. It is not possible to change this values during a scrolling.

locationIdstringOptional

Return WiFi Connections occurred on a specific Location Id

hotspotIdstringOptional

Return WiFi Connections occurred on a specific Access Point Id

dateStartstringOptional

Return WiFi Connections with date >= of request. Format is date iso8601. Eg: 2019-07-31T22:23:24Z' or '2019-07-31' but is necessary set timezone

dateEndstringOptional

Return WiFi Connections with creation date >= of request. Format is date iso8601. Eg: 2019-07-31T22:23:24Z' or '2019-07-31' but is necessary set timezone

timeZonestringOptional

Timezone

Responses
200
Array with the list of WiFi Connections
application/json
get
GET //v2/organizations/{cid}/accountings HTTP/1.1
Host: explore.cloud4wi.com
Authorization: Bearer JWT
Accept: */*
{
  "generated": "text",
  "sId": "text",
  "count": 1,
  "connections": [
    {
      "customerId": "text",
      "organizationId": "text",
      "start": "text",
      "startBusiness": "text",
      "stop": "text",
      "stopBusiness": "text",
      "duration": 1,
      "traffic": 1,
      "locationName": "text",
      "locationId": "text",
      "hotspotName": "text",
      "hotspotIdentifier": "text",
      "hotspotId": "text",
      "latitude": 1,
      "longitude": 1,
      "macAddressClient": "text",
      "ipAddressClient": "text",
      "terminateCause": "text"
    }
  ]
}

Last updated

Was this helpful?