Table of Contents

Interface IWirelessSsids

Namespace
Meraki.Api.Interfaces.Products.Wireless
Assembly
Meraki.Api.dll
public interface IWirelessSsids

Methods

GetNetworkWirelessSsidAsync(string, string, CancellationToken)

Return a single MR SSID

[Get("/networks/{networkId}/wireless/ssids/{number}")]
Task<Ssid> GetNetworkWirelessSsidAsync(string networkId, string number, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

number string

The SSID number

cancellationToken CancellationToken

Returns

Task<Ssid>

Exceptions

ApiException

Thrown when fails to make API call

GetNetworkWirelessSsidsAsync(string, CancellationToken)

List the MR SSIDs in a network

[Get("/networks/{networkId}/wireless/ssids")]
Task<List<Ssid>> GetNetworkWirelessSsidsAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<List<Ssid>>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkWirelessSsidAsync(string, string, SsidUpdateRequest, CancellationToken)

Update the attributes of an MR SSID

[Put("/networks/{networkId}/wireless/ssids/{number}")]
Task<Ssid> UpdateNetworkWirelessSsidAsync(string networkId, string number, SsidUpdateRequest updateNetworkSsid, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

number string

The SSID number

updateNetworkSsid SsidUpdateRequest
cancellationToken CancellationToken

Returns

Task<Ssid>

Exceptions

ApiException

Thrown when fails to make API call