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
organizationIdstringThe network id
networkIdsList<string>Optional parameter to filter the result set by the included set of network IDs
serialsList<string>A list of serial numbers. The returned devices will be filtered to only include these serials.
bssidsList<string>A list of BSSIDs. The returned devices will be filtered to only include these BSSIDs.
hideDisabledboolIf true, the returned devices will not include disabled SSIDs. (default: false)
perPageint?The number of entries per page returned. Acceptable range is 3 - 500. Default is 100.
startingAfterint?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.
endingBeforeint?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.
cancellationTokenCancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call