Table of Contents

Interface IDeviceCellularSims

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

Methods

GetDeviceCellularSimsAsync(string, CancellationToken)

Return the SIM and APN configurations for a cellular device.

[Get("/devices/{serial}/cellular/sims")]
Task<DeviceCellularSims> GetDeviceCellularSimsAsync(string serial, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

cancellationToken CancellationToken

Returns

Task<DeviceCellularSims>

Exceptions

ApiException

Thrown when fails to make API call

UpdateDeviceCellularSimsAsync(string, DeviceCellularSimsUpdateRequest, CancellationToken)

Update the management interface settings for a device

[Put("/devices/{serial}/cellular/sims")]
Task<DeviceCellularSims> UpdateDeviceCellularSimsAsync(string serial, DeviceCellularSimsUpdateRequest deviceCellularSimsUpdateRequest, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

deviceCellularSimsUpdateRequest DeviceCellularSimsUpdateRequest

Body for updating

cancellationToken CancellationToken

Returns

Task<DeviceCellularSims>

Exceptions

ApiException

Thrown when fails to make API call