Table of Contents

Interface ICellularGatewayUplink

Namespace
Meraki.Api.Interfaces.Products.CellularGateway
Assembly
Meraki.Api.dll

Represents a collection of functions to interact with the API endpoints

public interface ICellularGatewayUplink

Methods

Returns the uplink settings for your MG network.

[Get("/networks/{networkId}/cellularGateway/uplink")]
Task<NetworkCellularGatewayUplink> GetNetworkCellularGatewayUplinkAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<NetworkCellularGatewayUplink>

Exceptions

ApiException

Thrown when fails to make API call

Updates the uplink settings for your MG network.

[Put("/networks/{networkId}/cellularGateway/uplink")]
Task<NetworkCellularGatewayUplink> UpdateNetworkCellularGatewayUplinkAsync(string networkId, NetworkCellularGatewayUplink updateNetworkCellularGatewaySettingsUplink, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

updateNetworkCellularGatewaySettingsUplink NetworkCellularGatewayUplink

Body for updating uplink settings

cancellationToken CancellationToken

Returns

Task<NetworkCellularGatewayUplink>

Exceptions

ApiException

Thrown when fails to make API call