Table of Contents

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

networkId string

The network id

t0 string

The beginning of the timespan for the data. The maximum lookback period is 180 days from today. (optional)

t1 string

The end of the timespan for the data. t1 can be a maximum of 7 days after t0. (optional)

timespan double?

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)

band string

Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. (optional)

ssid int?

Filter results by SSID (optional)

vlan int?

Filter results by VLAN (optional)

apTag string

Filter results by AP Tag (optional)

serial string

Filter by AP (optional)

clientId string

Filter by client MAC (optional)

cancellationToken CancellationToken

Returns

Task<List<FailedConnection>>

Exceptions

ApiException

Thrown when fails to make API call