Table of Contents

Interface IWirelessSsidsSchedules

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

Methods

GetNetworkWirelessSsidSchedulesAsync(string, string, CancellationToken)

List the outage schedule for the SSID

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

Parameters

networkId string

The network id

number string

The SSID number

cancellationToken CancellationToken

Returns

Task<WirelessSsidOutageSchedule>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkWirelessSsidSchedulesAsync(string, string, WirelessSsidOutageSchedule, CancellationToken)

Update the outage schedule for the SSID

[Put("/networks/{networkId}/wireless/ssids/{number}/schedules")]
Task<WirelessSsidOutageSchedule> UpdateNetworkWirelessSsidSchedulesAsync(string networkId, string number, WirelessSsidOutageSchedule updateNetworkWirelessSsidSchedules, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

number string

The SSID number

updateNetworkWirelessSsidSchedules WirelessSsidOutageSchedule
cancellationToken CancellationToken

Returns

Task<WirelessSsidOutageSchedule>

Exceptions

ApiException

Thrown when fails to make API call