Table of Contents

Interface IWirelessRadioSettings

Namespace
Meraki.Api.Interfaces.Products.Wireless
Assembly
Meraki.Api.dll

Represents a collection of functions to interact with the API endpoints

public interface IWirelessRadioSettings

Methods

GetDeviceWirelessRadioSettingsAsync(string, CancellationToken)

Return the radio settings of a device

[Get("/devices/{serial}/wireless/radio/settings")]
Task<WirelessRadioSettings> GetDeviceWirelessRadioSettingsAsync(string serial, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

cancellationToken CancellationToken

Returns

Task<WirelessRadioSettings>

Exceptions

ApiException

Thrown when fails to make API call

UpdateDeviceWirelessRadioSettingsAsync(string, WirelessRadioSettings, CancellationToken)

Update the radio settings of a device

[Put("/devices/{serial}/wireless/radio/settings")]
Task<WirelessRadioSettings> UpdateDeviceWirelessRadioSettingsAsync(string serial, WirelessRadioSettings updateNetworkDeviceWirelessRadioSettings, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

updateNetworkDeviceWirelessRadioSettings WirelessRadioSettings

Body for updating radio settings

cancellationToken CancellationToken

Returns

Task<WirelessRadioSettings>

Exceptions

ApiException

Thrown when fails to make API call