Interface IWirelessDevicePacketLoss
- Namespace
- Meraki.Api.Interfaces.Products.Wireless
- Assembly
- Meraki.Api.dll
Provides functionality to retrieve packet loss information for wireless devices within an organization.
public interface IWirelessDevicePacketLoss
Remarks
This interface defines a method for listing the most recent packet loss data for wireless devices. The data is paginated, and the caller can specify the number of entries per page.
Methods
GetOrganizationWirelessDevicesPacketLossAsync(string, IEnumerable<string>?, IEnumerable<string>?, IEnumerable<int>?, IEnumerable<string>?, int?, string?, string?, string?, string?, double?, CancellationToken)
List the most recent packet loss information for wireless devices.
[Get("/organizations/{organizationId}/wireless/devices/packetLoss/byDevice")]
Task<List<WirelessDevicePacketLoss>> GetOrganizationWirelessDevicesPacketLossAsync(string organizationId, IEnumerable<string>? networkIds = null, IEnumerable<string>? serials = null, IEnumerable<int>? ssids = null, IEnumerable<string>? bands = null, int? perPage = 1000, string? startingAfter = null, string? endingBefore = null, string? t0 = null, string? t1 = null, double? timespan = null, CancellationToken cancellationToken = default)
Parameters
organizationIdstringThe organization ID.
networkIdsIEnumerable<string>Filter results by network.
serialsIEnumerable<string>Filter results by device serial number.
ssidsIEnumerable<int>Filter results by SSID number.
bandsIEnumerable<string>Filter results by band. Valid bands are: 2.4, 5, and 6.
perPageint?The number of entries per page returned. Acceptable range is 3 - 1000. Default is 1000.
startingAfterstringA token used by the server to indicate the start of the page. This parameter should not be defined by client applications.
endingBeforestringA token used by the server to indicate the end of the page. This parameter should not be defined by client applications.
t0stringThe beginning of the timespan for the data. The maximum lookback period is 90 days from today.
t1stringThe end of the timespan for the data. t1 can be a maximum of 90 days after t0.
timespandouble?The timespan for which the information will be fetched, in seconds. If specifying timespan, do not specify parameters t0 and t1. Must be between 300 and 7776000 seconds.
cancellationTokenCancellationTokenCancellation token.
Returns
Exceptions
- ApiException
Thrown when fails to make API call