Table of Contents

Interface IWirelessLatencyStats

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

Methods

GetDeviceWirelessLatencyStatsAsync(string, string, string, double?, string, int?, int?, string, string, CancellationToken)

Aggregated latency info for a given AP on this network

[Get("/devices/{serial}/wireless/latencyStats")]
Task<NetworkDeviceLatencyStats> GetDeviceWirelessLatencyStatsAsync(string serial, string t0 = null, string t1 = null, double? timespan = null, string band = null, int? ssid = null, int? vlan = null, string apTag = null, string fields = null, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

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)

fields string

Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string. (optional)

cancellationToken CancellationToken

Returns

Task<NetworkDeviceLatencyStats>

Exceptions

ApiException

Thrown when fails to make API call

GetNetworkWirelessLatencyStatsAsync(string, string, string, double?, string, int?, int?, string, string, CancellationToken)

Aggregated latency info for this network

[Get("/networks/{networkId}/wireless/latencyStats")]
Task<LatencyStats> GetNetworkWirelessLatencyStatsAsync(string networkId, string t0 = null, string t1 = null, double? timespan = null, string band = null, int? ssid = null, int? vlan = null, string apTag = null, string fields = 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)

fields string

Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string. (optional)

cancellationToken CancellationToken

Returns

Task<LatencyStats>

Exceptions

ApiException

Thrown when fails to make API call