I'd like to retrieve the the count of each type of client for a network during a time span -- e.g., how many VPN, wired, and wireless.
Is the correct way to do so (currently, in the v0 API) to use:
/networks/{networkId}/clients
Then parse through them and count:
if switchport
wired user
elif ssid
wireless user
else
vpn user
I don't know if this will deterministically identify these "types" of users though.