Table of Contents

Interface INetworksTraffic

Namespace
Meraki.Api.Interfaces.General.Networks
Assembly
Meraki.Api.dll
public interface INetworksTraffic

Methods

GetNetworkTrafficAsync(string, string, double?, string, CancellationToken)

Return the traffic analysis data for this network

[Get("/networks/{networkId}/traffic")]
Task<List<NetworkTraffic>> GetNetworkTrafficAsync(string networkId, string t0 = null, double? timespan = null, string deviceType = 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 30 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 30 days. (optional)

deviceType string

Filter the data by device type: 'combined', 'wireless', 'switch' or 'appliance'. Defaults to 'combined'. When using 'combined', for each rule the data will come from the device type with the most usage. (optional)

cancellationToken CancellationToken

Returns

Task<List<NetworkTraffic>>