Interface IWirelessSsidsStatuses
- Namespace
- Meraki.Api.Interfaces.Products.Wireless
- Assembly
- Meraki.Api.dll
public interface IWirelessSsidsStatuses
Methods
GetOrganizationWirelessSsidsStatusesByDeviceAsync(string, List<string>, List<string>, List<string>, bool, int?, int?, int?, CancellationToken)
List status information of all BSSIDs in your organization
[Get("/organizations/{organizationId}/wireless/ssids/statuses/byDevice")]
Task<SsidsStatusesByDevice> GetOrganizationWirelessSsidsStatusesByDeviceAsync(string organizationId, List<string> networkIds, List<string> serials, List<string> bssids, bool hideDisabled, int? perPage, int? startingAfter, int? endingBefore, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe network id
networkIds
List<string>Optional parameter to filter the result set by the included set of network IDs
serials
List<string>A list of serial numbers. The returned devices will be filtered to only include these serials.
bssids
List<string>A list of BSSIDs. The returned devices will be filtered to only include these BSSIDs.
hideDisabled
boolIf true, the returned devices will not include disabled SSIDs. (default: false)
perPage
int?The number of entries per page returned. Acceptable range is 3 - 500. Default is 100.
startingAfter
int?A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
endingBefore
int?A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
cancellationToken
CancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call