Table of Contents

Interface IWirelessLatencyHistory

Namespace
Meraki.Api.Interfaces.Products.Wireless
Assembly
Meraki.Api.dll
public interface IWirelessLatencyHistory

Methods

GetNetworkWirelessLatencyHistoryAsync(string, string, string, double?, int?, bool?, string?, string?, string?, string?, string?, string?, CancellationToken)

Aggregated latency info for this network, grouped by clients

[Get("/networks/{networkId}/wireless/latencyHistory")]
Task<List<LatencyHistory>> GetNetworkWirelessLatencyHistoryAsync(string networkId, string t0 = null, string t1 = null, double? timespan = null, int? resolution = null, bool? autoResolution = null, string? clientId = null, string? deviceSerial = null, string? apTag = null, string? band = null, string? ssid = null, string? accessCategory = 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)

resolution int?

The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.

autoResolution bool?

Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.

clientId string

Filter results by network client.

deviceSerial string

Filter results by device.

apTag string

Filter results by AP tag.

band string

Filter results by band (either '2.4' or '5').

ssid string

Filter results by SSID number.

accessCategory string

Filter by access category.

cancellationToken CancellationToken

Returns

Task<List<LatencyHistory>>

Exceptions

ApiException

Thrown when fails to make API call