cancel
Showing results for 
Search instead for 
Did you mean: 

API call to fetch the bandwidth being used on a particular SSID in SMARTZONE 100

amar_deep
New Contributor III
Hi Guys,

I am researching on the API call to fetch the bandwidth being used on a particular SSID. We are testing with the smart zone 100.


In the API, I saw that we can use '/operational/client' that outputs the client  [fromClientBytes] and [toClientBytes] . Can we use these attributes?

Any suggestions?

Thanks,
Amardeep



3 REPLIES 3

amar_deep
New Contributor III
Any updates/suggestions?

amar_deep
New Contributor III
Never mind. I have figured this out 

We need to make a POST call using the filters:

/api/public/v6_1/query/client

$data = '{
  "filters": [
    {
      "type": "WLAN",
      "value": "WLANID"
    }
  ],
  "fullTextSearch": {
    "type": "AND",
    "value": "SSID-NAME"
  },
  "attributes": [
    "*"
  ]
}';


From the output we can use the  [txBytes] and [rxBytes]  for b/w collection

michael_brado
Esteemed Contributor II
Thanks Amar!