Interface IWirelessBluetoothSettings
- Namespace
- Meraki.Api.Interfaces.Products.Wireless
- Assembly
- Meraki.Api.dll
public interface IWirelessBluetoothSettings
Methods
GetDeviceWirelessBluetoothSettingsAsync(string, CancellationToken)
Return the bluetooth settings for a wireless device
[Get("/devices/{serial}/wireless/bluetooth/settings")]
Task<DeviceBluetoothSettings> GetDeviceWirelessBluetoothSettingsAsync(string serial, CancellationToken cancellationToken = default)
Parameters
serial
stringThe device serial number
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkWirelessBluetoothSettingsAsync(string, CancellationToken)
Return the Bluetooth settings for a network.
[Get("/networks/{networkId}/wireless/bluetooth/settings")]
Task<NetworkBluetoothSettings> GetNetworkWirelessBluetoothSettingsAsync(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateDeviceWirelessBluetoothSettingsAsync(string, DeviceBluetoothSettings, CancellationToken)
Update the bluetooth settings for a wireless device
[Put("/devices/{serial}/wireless/bluetooth/settings")]
Task<DeviceBluetoothSettings> UpdateDeviceWirelessBluetoothSettingsAsync(string serial, DeviceBluetoothSettings deviceBluetoothSettings, CancellationToken cancellationToken = default)
Parameters
serial
stringThe serial number
deviceBluetoothSettings
DeviceBluetoothSettingsBody for updating device's wireless bluetooth settings
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkWirelessBluetoothSettingsAsync(string, NetworkBluetoothSettings, CancellationToken)
Update the Bluetooth settings for a network
[Put("/networks/{networkId}/wireless/bluetooth/settings")]
Task<NetworkBluetoothSettings> UpdateNetworkWirelessBluetoothSettingsAsync(string networkId, NetworkBluetoothSettings networkBluetoothSettings, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
networkBluetoothSettings
NetworkBluetoothSettingsBody for updating network's wireless bluetooth settings
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call