Interface IWirelessClientsLatencyHistory
- Namespace
- Meraki.Api.Interfaces.Products.Wireless
- Assembly
- Meraki.Api.dll
public interface IWirelessClientsLatencyHistory
Methods
GetNetworkWirelessClientLatencyHistoryAsync(string, string, string, string, double?, int?, CancellationToken)
Return the latency history for a client
[Get("/networks/{networkId}/wireless/clients/{clientId}/latencyHistory")]
Task<List<ClientLatencyHistory>> GetNetworkWirelessClientLatencyHistoryAsync(string networkId, string clientId, string t0 = null, string t1 = null, double? timespan = null, int? resolution = null, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
clientId
stringThe client id
t0
stringThe beginning of the timespan for the data. The maximum lookback period is 791 days from today. (optional)
t1
stringThe end of the timespan for the data. t1 can be a maximum of 791 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 791 days. The default is 1 day. (optional)
resolution
int?The time resolution in seconds for returned data. The valid resolutions are: 86400. The default is 86400. (optional)
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call