cancel
Showing results for 
Search instead for 
Did you mean: 

Application data via API

tony_sugent
New Contributor

Hey,

My company is using SmartZone Virtual High Scale version 5.1.2.0.302. I am attempting to put together an API call that pulls application traffic on the WLAN or Zone. This is part of a large project that I have taken on and have completed everything EXCEPT this. Basically I am trying to replicate this graph (attached) elsewhere.

Image_ images_messages_60366301417d7e5cf8c63f08_3fce6f0dc6527ba27d42e5795a618b30_ruckus-56cfbd88-ccba-484e-af00-8f4e49570171-1571003260.png
2 REPLIES 2

diego_garcia_de
Contributor III

I dont recall if its on the documented APIs, but it seems its available here:

/wsg/api/public/v9_1/trafficAnalysis/client/app/ap?_dc=1614180833843

(User F12 / DevTools to find)

{
  "filters": [
    {
      "type": "DOMAIN",
      "value": "8b2081d5-9662-40d9-a3db-2a3cf4dde3f7"
    }
  ],
  "extraFilters": [
    {
      "type": "RADIOID",
      "value": "2.4G+5G"
    }
  ],
  "extraNotFilters": [
    {
      "type": "MONITORINGENABLED",
      "value": "true"
    }
  ],
  "attributes": [
    "tx+rx"
  ],
  "extraTimeRange": {
    "start": 1614180296369,
    "end": 1614180476369,
    "interval": 180000
  },
  "options": {},
  "limit": 20,
  "page": 1
}

That is exactly what I was looking for! Thank you so much Diego. I wish that was documented in the API. Would've saved me a whole day..