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
organizationId
stringThe organization id
t0
stringThe beginning of the timespan for the data.
t1
stringThe end of the timespan for the data. t1 can be a maximum of 31 days after t0.
timespan
intThe 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.
networkTag
stringMatch result to an exact network tag
deviceTag
stringMatch result to an exact device tag
networkId
stringMatch result to an exact network id
ssidName
stringFilter results by ssid name
usageUplink
stringFilter results by usage uplink
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call