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
stringThe network id
cancellationToken
CancellationToken
Returns
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
stringThe network id
updateNetworkSettings
NetworkSettingsBody for updating network settings
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call