Table of Contents

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 string

The device serial number

cancellationToken CancellationToken

Returns

Task<DeviceBluetoothSettings>

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 string

The network id

cancellationToken CancellationToken

Returns

Task<NetworkBluetoothSettings>

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 string

The serial number

deviceBluetoothSettings DeviceBluetoothSettings

Body for updating device's wireless bluetooth settings

cancellationToken CancellationToken

Returns

Task<DeviceBluetoothSettings>

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 string

The network id

networkBluetoothSettings NetworkBluetoothSettings

Body for updating network's wireless bluetooth settings

cancellationToken CancellationToken

Returns

Task<NetworkBluetoothSettings>

Exceptions

ApiException

Thrown when fails to make API call