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
stringThe serial number
cancellationToken
CancellationToken
Returns
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
stringThe serial number
updateNetworkDeviceWirelessRadioSettings
WirelessRadioSettingsBody for updating radio settings
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call