API call to fetch the bandwidth being used on a particular SSID in SMARTZONE 100
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2019 05:26 AM
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
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2019 06:37 AM
Any updates/suggestions?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2019 02:59 AM
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
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-17-2019 02:42 PM
Thanks Amar!