Table of Contents

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 string

The network id

cancellationToken CancellationToken

Returns

Task<WirelessSettings>

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 string

The network id

updateNetworkWirelessSettings WirelessSettingsUpdateDto
cancellationToken CancellationToken

Returns

Task<WirelessSettings>

Exceptions

ApiException

Thrown when fails to make API call