Table of Contents

Interface IWirelessBilling

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

Represents a collection of functions to interact with the API endpoints

public interface IWirelessBilling

Methods

GetNetworkWirelessBillingAsync(string, CancellationToken)

Return the billing settings of this network

[Get("/networks/{networkId}/wireless/billing")]
Task<WirelessBilling> GetNetworkWirelessBillingAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<WirelessBilling>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkWirelessBillingAsync(string, WirelessBilling, CancellationToken)

Update the billing settings

[Put("/networks/{networkId}/wireless/billing")]
Task<WirelessBilling> UpdateNetworkWirelessBillingAsync(string networkId, WirelessBilling updateNetworkWirelessBilling, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

updateNetworkWirelessBilling WirelessBilling

Body for updating network wireless billing

cancellationToken CancellationToken

Returns

Task<WirelessBilling>

Exceptions

ApiException

Thrown when fails to make API call