Meraki.Api 1.30.26

.NET Standard 2.0
dotnet add package Meraki.Api --version 1.30.26
NuGet\Install-Package Meraki.Api -Version 1.30.26
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Meraki.Api" Version="1.30.26" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Meraki.Api --version 1.30.26
#r "nuget: Meraki.Api, 1.30.26"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Meraki.Api as a Cake Addin
#addin nuget:?package=Meraki.Api&version=1.30.26

// Install Meraki.Api as a Cake Tool
#tool nuget:?package=Meraki.Api&version=1.30.26

Meraki.Api

Nuget Nuget License: MIT Codacy Badge

This project implements access to the v1 Meraki API

See the contribution guide for more information regarding contributing to this project

To use the Meraki API nuget package:

Visual Studio

  1. Open your project in Visual Studio
  2. Right-click on the project and click "Manage Nuget packages"
  3. Find the package "Meraki.Api" - install the latest version

Example code (C# 11)

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 = "MerakiGPT/1.1 CiscoMeraki"
			});

			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}");
			}
		}
	}
}

API Documentation

The Meraki API documentation can be found here:

Testing

You can test this using a Meraki Sandbox here:

After signing in, look in the lower left hand side of the page for your API key.

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.30.26 35 3/22/2023
1.30.23 80 3/15/2023
1.30.20 64 3/15/2023
1.30.18 130 2/28/2023
1.30.15 86 2/27/2023
1.30.11 187 2/24/2023
1.30.9 119 2/22/2023
1.30.7 102 2/20/2023
1.30.5 96 2/20/2023
1.30.3 113 2/7/2023
1.29.15 146 1/31/2023
1.29.13 117 1/31/2023
1.29.12 132 1/27/2023
1.29.11 144 1/25/2023
1.29.8 148 1/17/2023
1.29.6 135 1/17/2023
1.29.4 146 1/16/2023
1.29.1 152 1/13/2023
1.28.6 141 1/10/2023
1.28.4 185 1/6/2023
1.28.1 175 12/13/2022
1.27.31 167 12/9/2022
1.27.30 157 12/9/2022
1.27.28 193 12/5/2022
1.27.25 209 11/30/2022
1.27.21 180 11/30/2022
1.27.17 222 11/22/2022
1.27.15 199 11/18/2022
1.27.6 202 11/16/2022
1.26.27 262 11/10/2022
1.26.24 229 11/7/2022
1.26.22 227 11/2/2022
1.26.8 243 10/30/2022
1.26.7 248 10/26/2022
1.26.5 269 10/17/2022
1.26.1 274 10/14/2022
1.25.13 255 10/10/2022
1.25.11 273 10/10/2022
1.25.10 275 10/10/2022
1.25.9 256 10/4/2022
1.25.7 289 9/16/2022
1.25.4 288 9/16/2022
1.25.3 298 9/15/2022
1.25.2 296 9/12/2022
1.24.23 298 9/5/2022
1.24.20 305 8/26/2022
1.24.12 327 8/12/2022
1.24.9 303 8/11/2022
1.24.8 302 8/11/2022
1.24.7 313 8/11/2022
1.24.6 302 8/11/2022
1.24.5 312 8/11/2022
1.24.3 296 8/11/2022
1.23.9 329 7/26/2022
1.23.5 432 7/19/2022
1.22.23 337 7/15/2022
1.22.19 387 7/7/2022
1.22.9 358 6/30/2022
1.22.5 372 6/14/2022
1.22.4 309 6/14/2022
1.22.3 320 6/14/2022
1.20.42 390 5/23/2022
1.20.18 410 4/20/2022
1.20.14 340 4/9/2022
1.20.10 336 4/7/2022
1.20.8 352 4/7/2022
1.19.79 341 4/3/2022
1.19.78 343 4/1/2022
1.19.60 335 3/27/2022
1.19.53 330 3/19/2022
1.19.52 319 3/19/2022
1.19.51 326 3/19/2022
1.19.50 331 3/19/2022
1.19.48 323 3/19/2022
1.19.45 344 3/15/2022
1.19.44 327 3/15/2022
1.19.43 330 3/14/2022
1.19.42 373 3/11/2022
1.19.38 333 3/9/2022
1.19.36 316 3/9/2022
1.19.35 314 3/9/2022
1.19.34 329 3/8/2022
1.19.32 331 3/7/2022
1.19.30 330 3/7/2022
1.19.26 328 3/7/2022
1.19.25 321 3/7/2022
1.19.21 337 3/7/2022
1.19.20 329 3/7/2022
1.19.17 331 3/6/2022
1.19.16 332 3/4/2022
1.19.11 329 3/4/2022
1.19.7 337 3/3/2022
1.19.1 325 3/3/2022
1.18.62 333 3/2/2022
1.18.61 331 3/1/2022
1.18.57 332 2/25/2022
1.18.56 346 2/24/2022
1.18.52 352 2/22/2022
1.18.32 355 2/11/2022
1.18.23 332 2/11/2022
1.18.22 349 2/8/2022
1.18.2 375 2/6/2022
1.17.57 344 2/2/2022
1.17.52 368 1/28/2022
1.17.50 348 1/28/2022
1.17.38 348 1/28/2022
1.17.3 245 1/9/2022
1.16.2 256 12/7/2021
1.16.1 235 12/2/2021
1.15.95 258 11/18/2021
1.15.88 234 11/17/2021
1.15.86 244 11/17/2021
1.15.77 269 11/16/2021
1.15.76 248 11/16/2021
1.14.28 279 11/8/2021
1.14.9 226 12/7/2021
1.14.8 229 12/7/2021
1.14.6 311 10/26/2021
1.14.1 282 10/26/2021
1.11.14 1,016 8/24/2021
1.11.4 286 8/19/2021
1.11.3-gd5620b5868 173 8/19/2021
1.0.94 933 8/4/2021
1.0.93 309 8/2/2021
1.0.89 289 7/28/2021
1.0.88 483 7/22/2021
1.0.87 291 7/15/2021
1.0.85 515 2/9/2021
1.0.83 385 11/18/2020
1.0.82 357 11/18/2020
1.0.80 374 10/21/2020
1.0.79 400 10/20/2020
1.0.75 355 10/15/2020
1.0.74 379 10/6/2020
1.0.73 496 9/17/2020
1.0.72 466 8/13/2020
1.0.71 383 8/12/2020
1.0.70 419 8/11/2020
1.0.69 424 6/14/2020
1.0.68 439 6/14/2020
1.0.67 453 5/20/2020
1.0.66 401 5/20/2020
1.0.65 421 5/20/2020
1.0.63 406 5/19/2020
1.0.62 427 5/18/2020
1.0.61 402 5/18/2020
1.0.59 419 5/18/2020
1.0.58 429 5/15/2020
1.0.57 409 5/15/2020
1.0.56 382 5/14/2020
1.0.55 403 5/7/2020
1.0.52 430 4/9/2020
1.0.40 446 3/27/2020
1.0.39 423 3/26/2020
1.0.38 420 3/26/2020
1.0.35 459 3/13/2020
1.0.33 461 3/13/2020
1.0.32 486 3/13/2020
1.0.27 453 3/5/2020
1.0.26 454 3/5/2020
1.0.18 428 12/9/2019
1.0.15 432 10/21/2019
1.0.13 432 10/21/2019
1.0.10 438 10/17/2019
1.0.9 452 10/16/2019
1.0.8 439 10/16/2019
1.0.7 452 10/16/2019
1.0.6 459 10/16/2019
1.0.5 462 10/12/2019
1.0.4 441 10/12/2019
1.0.3 435 10/8/2019
1.0.1 464 10/7/2019
0.1.20-alpha 312 10/7/2019
0.1.19-alpha 301 10/7/2019
0.1.18-alpha 295 10/4/2019
0.1.16-alpha 303 10/1/2019
0.1.14-alpha 290 9/30/2019
0.1.13-alpha 310 9/29/2019
0.1.12-alpha 307 9/29/2019
0.1.11-alpha 296 9/29/2019
0.1.10-alpha 297 9/28/2019
0.1.9-alpha 314 9/28/2019
0.1.7-alpha 313 9/16/2019
0.1.6-alpha 301 9/16/2019
0.1.5-alpha 305 9/15/2019
0.1.3-alpha 308 9/12/2019
0.1.2-alpha 315 9/12/2019