02-24-2021 06:30 AM
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.
02-24-2021 07:35 AM
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
}
02-24-2021 07:46 AM
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..