Interface IWirelessSettings
- Namespace
- Meraki.Api.Interfaces.Products.Wireless
- Assembly
- Meraki.Api.dll
Represents a collection of functions to interact with the API endpoints
public interface IWirelessSettings
Methods
GetNetworkWirelessSettingsAsync(string, CancellationToken)
Return the wireless settings for a network
[Get("/networks/{networkId}/wireless/settings")]
Task<WirelessSettings> GetNetworkWirelessSettingsAsync(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkWirelessSettingsAsync(string, WirelessSettingsUpdateDto, CancellationToken)
Update the wireless settings for a network
[Put("/networks/{networkId}/wireless/settings")]
Task<WirelessSettings> UpdateNetworkWirelessSettingsAsync(string networkId, WirelessSettingsUpdateDto updateNetworkWirelessSettings, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
updateNetworkWirelessSettings
WirelessSettingsUpdateDtocancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call