Interface IOrganizationBandwidthUsageHistory
- Namespace
- Meraki.Api.Interfaces.General.Organizations
- Assembly
- Meraki.Api.dll
Represents a collection of functions to interact with the API endpoints
public interface IOrganizationBandwidthUsageHistory
Methods
GetOrganizationClientsBandwidthUsageHistoryAsync(string, string, string, int, string?, string?, string?, string?, string?, CancellationToken)
Return data usage (in megabits per second) over time for all clients in the given organization within a given time range.
[Get("/organizations/{organizationId}/clients/bandwidthUsageHistory")]
Task<List<BandwidthUsageHistory>> GetOrganizationClientsBandwidthUsageHistoryAsync(string organizationId, string t0, string t1, int timespan = 1, string? networkTag = null, string? deviceTag = null, string? networkId = null, string? ssidName = null, string? usageUplink = null, CancellationToken cancellationToken = default)
Parameters
organizationIdstringThe organization id
t0stringThe beginning of the timespan for the data.
t1stringThe end of the timespan for the data. t1 can be a maximum of 31 days after t0.
timespanintThe 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 31 days. The default is 1 day.
networkTagstringMatch result to an exact network tag
deviceTagstringMatch result to an exact device tag
networkIdstringMatch result to an exact network id
ssidNamestringFilter results by ssid name
usageUplinkstringFilter results by usage uplink
cancellationTokenCancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call