Table of Contents

Class MerakiClient

Namespace
Meraki.Api
Assembly
Meraki.Api.dll

A Meraki Dashboard API client. This is your starting point for all API operations. Example usage:

using Meraki.Api;
using System;
using System.Threading.Tasks;

namespace My.Project;
public static class Program
{
    public static async Task Main()
    {
        using var merakiClient = new MerakiClient(
            new MerakiClientOptions
            {
                ApiKey = "0123456789abcdef0123456789abcdef01234567",
                UserAgent = "YourProductName/YourProductVersion YourCompanyName"
            }
        );

        var organizations = await merakiClient
            .Organizations
            .GetOrganizationsAsync()
            .ConfigureAwait(false);

        var firstOrganization = organizations[0];

        var devices = await merakiClient
            .Organizations
            .Devices
            .GetOrganizationDevicesAsync(firstOrganization.Id)
            .ConfigureAwait(false);

        Console.WriteLine("Devices:");
        foreach (var device in devices)
        {
            Console.WriteLine($"    - {device.Serial}: {device.Name}");
        }
    }
}
public class MerakiClient : IDisposable
Inheritance
MerakiClient
Implements
Inherited Members

Constructors

MerakiClient(MerakiClientOptions, ILogger?)

A Meraki portal client

public MerakiClient(MerakiClientOptions options, ILogger? logger = null)

Parameters

options MerakiClientOptions
logger ILogger

Properties

ApiClientVersion

public string ApiClientVersion { get; }

Property Value

string

Appliance

public ApplianceSection Appliance { get; }

Property Value

ApplianceSection

Camera

public CameraSection Camera { get; }

Property Value

CameraSection

CellularGateway

public CellularGatewaySection CellularGateway { get; }

Property Value

CellularGatewaySection

Devices

public DevicesSection Devices { get; }

Property Value

DevicesSection

Insight

public InsightSection Insight { get; }

Property Value

InsightSection

IsReadOnly

Used to find out whether the client has the ReadOnly option set

public bool IsReadOnly { get; }

Property Value

bool

LastRequestUri

public string LastRequestUri { get; }

Property Value

string

LastResponseHeaders

public HttpResponseHeaders? LastResponseHeaders { get; set; }

Property Value

HttpResponseHeaders

Licensing

public LicensingSection Licensing { get; }

Property Value

LicensingSection

LiveTools

public LiveToolsSection LiveTools { get; }

Property Value

LiveToolsSection

Networks

public NetworksSection Networks { get; }

Property Value

NetworksSection

Organizations

public OrganizationsSection Organizations { get; }

Property Value

OrganizationsSection

Sensor

public SensorSection Sensor { get; }

Property Value

SensorSection

SensorRanges

public static Dictionary<SensorMetrics, List<SensorRange>> SensorRanges { get; }

Property Value

Dictionary<SensorMetrics, List<SensorRange>>

Sm

public SmSection Sm { get; }

Property Value

SmSection

Statistics

public MerakiClientStatistics Statistics { get; }

Property Value

MerakiClientStatistics

Switch

public SwitchSection Switch { get; }

Property Value

SwitchSection

Wireless

public WirelessSection Wireless { get; }

Property Value

WirelessSection

Methods

Dispose()

public void Dispose()

Dispose(bool)

protected virtual void Dispose(bool disposing)

Parameters

disposing bool

GetAllAsync<T>(Func<int, string?, string?, CancellationToken, Task<List<T>>>, int, CancellationToken)

public Task<List<T>> GetAllAsync<T>(Func<int, string?, string?, CancellationToken, Task<List<T>>> pageFactoryAsync, int perPage, CancellationToken cancellationToken)

Parameters

pageFactoryAsync Func<int, string, string, CancellationToken, Task<List<T>>>
perPage int
cancellationToken CancellationToken

Returns

Task<List<T>>

Type Parameters

T

GetAllAsync<T>(Func<int?, string?, string?, CancellationToken, Task<ApiResponse<List<T>>>>, int, CancellationToken)

public static Task<List<T>> GetAllAsync<T>(Func<int?, string?, string?, CancellationToken, Task<ApiResponse<List<T>>>> pageFactoryAsync, int perPage, CancellationToken cancellationToken)

Parameters

pageFactoryAsync Func<int?, string, string, CancellationToken, Task<ApiResponse<List<T>>>>
perPage int
cancellationToken CancellationToken

Returns

Task<List<T>>

Type Parameters

T

GetAllAsync<T>(Func<string?, string?, CancellationToken, Task<ApiResponse<List<T>>>>, CancellationToken)

public static Task<List<T>> GetAllAsync<T>(Func<string?, string?, CancellationToken, Task<ApiResponse<List<T>>>> pageFactoryAsync, CancellationToken cancellationToken)

Parameters

pageFactoryAsync Func<string, string, CancellationToken, Task<ApiResponse<List<T>>>>
cancellationToken CancellationToken

Returns

Task<List<T>>

Type Parameters

T

GetAllAsync<T>(Func<string?, string?, CancellationToken, Task<List<T>>>, CancellationToken)

public Task<List<T>> GetAllAsync<T>(Func<string?, string?, CancellationToken, Task<List<T>>> pageFactoryAsync, CancellationToken cancellationToken)

Parameters

pageFactoryAsync Func<string, string, CancellationToken, Task<List<T>>>
cancellationToken CancellationToken

Returns

Task<List<T>>

Type Parameters

T

GetEndOfLifeDetailsAsync(CancellationToken)

public static Task<List<DeviceModelEndOfLifeDetail>> GetEndOfLifeDetailsAsync(CancellationToken cancellationToken = default)

Parameters

cancellationToken CancellationToken

Returns

Task<List<DeviceModelEndOfLifeDetail>>

Exceptions

ApiException

Thrown when fails to make API call

GetInfoFromSerialNumber(string)

public static SerialNumberInfo GetInfoFromSerialNumber(string serialNumber)

Parameters

serialNumber string

Returns

SerialNumberInfo

SetReadOnly(bool)

Used to change the Options Readonly state after client is created

public void SetReadOnly(bool readOnly)

Parameters

readOnly bool