Table of Contents

Interface INetworksSettings

Namespace
Meraki.Api.Interfaces.General.Networks
Assembly
Meraki.Api.dll
public interface INetworksSettings

Methods

GetNetworkSettingsAsync(string, CancellationToken)

Return the settings for a network

[Get("/networks/{networkId}/settings")]
Task<NetworkSettings> GetNetworkSettingsAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<NetworkSettings>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkSettingsAsync(string, NetworkSettings, CancellationToken)

Update the settings for a network

[Put("/networks/{networkId}/settings")]
Task<NetworkSettings> UpdateNetworkSettingsAsync(string networkId, NetworkSettings updateNetworkSettings, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

updateNetworkSettings NetworkSettings

Body for updating network settings

cancellationToken CancellationToken

Returns

Task<NetworkSettings>

Exceptions

ApiException

Thrown when fails to make API call