Interface IWirelessClientsConnectionStats
- Namespace
- Meraki.Api.Interfaces.Products.Wireless
- Assembly
- Meraki.Api.dll
public interface IWirelessClientsConnectionStats
Methods
GetNetworkWirelessClientConnectionStatsAsync(string, string, string, string, double?, string, int?, int?, string, CancellationToken)
Aggregated connectivity info for a given client on this network
[Get("/networks/{networkId}/wireless/clients/{clientId}/connectionStats")]
Task<NetworkClientConnectionStats> GetNetworkWirelessClientConnectionStatsAsync(string networkId, string clientId, string t0 = null, string t1 = null, double? timespan = null, string band = null, int? ssid = null, int? vlan = null, string apTag = null, CancellationToken cancellationToken = default)
Parameters
networkIdstringThe network ID
clientIdstringThe client ID (MAC)
t0stringThe beginning of the timespan for the data. The maximum lookback period is 180 days from today. (optional)
t1stringThe end of the timespan for the data. t1 can be a maximum of 7 days after t0. (optional)
timespandouble?The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days. (optional)
bandstringFilter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. (optional)
ssidint?Filter results by SSID (optional)
vlanint?Filter results by VLAN (optional)
apTagstringFilter results by AP Tag (optional)
cancellationTokenCancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkWirelessClientsConnectionStatsAsync(string, string, string, double?, string, int?, int?, string, CancellationToken)
Aggregated connectivity info for this network, grouped by clients
[Get("/networks/{networkId}/wireless/clients/connectionStats")]
Task<List<NetworkClientConnectionStats>> GetNetworkWirelessClientsConnectionStatsAsync(string networkId, string t0 = null, string t1 = null, double? timespan = null, string band = null, int? ssid = null, int? vlan = null, string apTag = null, CancellationToken cancellationToken = default)
Parameters
networkIdstringThe network ID
t0stringThe beginning of the timespan for the data. The maximum lookback period is 180 days from today. (optional)
t1stringThe end of the timespan for the data. t1 can be a maximum of 7 days after t0. (optional)
timespandouble?The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days. (optional)
bandstringFilter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. (optional)
ssidint?Filter results by SSID (optional)
vlanint?Filter results by VLAN (optional)
apTagstringFilter results by AP Tag (optional)
cancellationTokenCancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call