Interface IWirelessFailedConnections
- Namespace
- Meraki.Api.Interfaces.Products.Wireless
- Assembly
- Meraki.Api.dll
public interface IWirelessFailedConnections
Methods
GetNetworkWirelessFailedConnectionsAsync(string, string, string, double?, string, int?, int?, string, string, string, CancellationToken)
List of all failed client connection events on this network in a given time range
[Get("/networks/{networkId}/wireless/failedConnections")]
Task<List<FailedConnection>> GetNetworkWirelessFailedConnectionsAsync(string networkId, string t0 = null, string t1 = null, double? timespan = null, string band = null, int? ssid = null, int? vlan = null, string apTag = null, string serial = null, string clientId = 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)
serialstringFilter by AP (optional)
clientIdstringFilter by client MAC (optional)
cancellationTokenCancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call