Table of Contents

Interface IDeviceClients

Namespace
Meraki.Api.Interfaces.General.Devices
Assembly
Meraki.Api.dll
public interface IDeviceClients

Methods

GetDeviceClientsAsync(string, string, double?, CancellationToken)

List the clients of a device, up to a maximum of a month ago

[Get("/devices/{serial}/clients")]
Task<List<DeviceClient>> GetDeviceClientsAsync(string serial, string t0 = null, double? timespan = 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 31 days from today. (optional)

timespan double?

The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day. (optional)

cancellationToken CancellationToken

Returns

Task<List<DeviceClient>>

Exceptions

ApiException

Thrown when fails to make API call