Table of Contents

Interface IDeviceManagementInterface

Namespace
Meraki.Api.Interfaces.General.Devices
Assembly
Meraki.Api.dll
public interface IDeviceManagementInterface

Methods

GetDeviceManagementInterfaceAsync(string, CancellationToken)

Return the management interface settings for a device

[Get("/devices/{serial}/managementInterface")]
Task<DeviceManagementInterfaceSettings> GetDeviceManagementInterfaceAsync(string serial, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

cancellationToken CancellationToken

Returns

Task<DeviceManagementInterfaceSettings>

Exceptions

ApiException

Thrown when fails to make API call

UpdateDeviceManagementInterfaceAsync(string, DeviceManagementInterfaceSettings, CancellationToken)

Update the management interface settings for a device

[Put("/devices/{serial}/managementInterface")]
Task<DeviceManagementInterfaceSettings> UpdateDeviceManagementInterfaceAsync(string serial, DeviceManagementInterfaceSettings managementInterfaceSettingsUpdateDto, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

managementInterfaceSettingsUpdateDto DeviceManagementInterfaceSettings

Body for updating management interface settings

cancellationToken CancellationToken

Returns

Task<DeviceManagementInterfaceSettings>

Exceptions

ApiException

Thrown when fails to make API call