Meraki.Api 1.31.19

.NET Standard 2.0
dotnet add package Meraki.Api --version 1.31.19
NuGet\Install-Package Meraki.Api -Version 1.31.19
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.31.19" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Meraki.Api --version 1.31.19
#r "nuget: Meraki.Api, 1.31.19"
#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.31.19

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

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 = "YourProductName/YourProductVersion YourCompanyName"
				UserAgent = "DeviceLister/1.0 MyCompanyInc"
			});

			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.31.19 48 3/28/2023
1.31.16 36 3/28/2023
1.31.14 52 3/27/2023
1.31.13 54 3/27/2023
1.30.26 94 3/22/2023
1.30.23 150 3/15/2023
1.30.20 78 3/15/2023
1.30.18 148 2/28/2023
1.30.15 102 2/27/2023
1.30.11 220 2/24/2023
1.30.9 128 2/22/2023
1.30.7 111 2/20/2023
1.30.5 105 2/20/2023
1.30.3 121 2/7/2023
1.29.15 153 1/31/2023
1.29.13 124 1/31/2023
1.29.12 139 1/27/2023
1.29.11 151 1/25/2023
1.29.8 155 1/17/2023
1.29.6 142 1/17/2023
1.29.4 153 1/16/2023
1.29.1 159 1/13/2023
1.28.6 148 1/10/2023
1.28.4 192 1/6/2023
1.28.1 182 12/13/2022
1.27.31 174 12/9/2022
1.27.30 164 12/9/2022
1.27.28 200 12/5/2022
1.27.25 216 11/30/2022
1.27.21 187 11/30/2022
1.27.17 231 11/22/2022
1.27.15 206 11/18/2022
1.27.6 209 11/16/2022
1.26.27 269 11/10/2022
1.26.24 239 11/7/2022
1.26.22 234 11/2/2022
1.26.8 250 10/30/2022
1.26.7 255 10/26/2022
1.26.5 276 10/17/2022
1.26.1 281 10/14/2022
1.25.13 262 10/10/2022
1.25.11 280 10/10/2022
1.25.10 282 10/10/2022
1.25.9 264 10/4/2022
1.25.7 296 9/16/2022
1.25.4 295 9/16/2022
1.25.3 306 9/15/2022
1.25.2 303 9/12/2022
1.24.23 305 9/5/2022
1.24.20 312 8/26/2022
1.24.12 335 8/12/2022
1.24.9 311 8/11/2022
1.24.8 309 8/11/2022
1.24.7 320 8/11/2022
1.24.6 309 8/11/2022
1.24.5 319 8/11/2022
1.24.3 303 8/11/2022
1.23.9 336 7/26/2022
1.23.5 439 7/19/2022
1.22.23 344 7/15/2022
1.22.19 394 7/7/2022
1.22.9 365 6/30/2022
1.22.5 379 6/14/2022
1.22.4 316 6/14/2022
1.22.3 327 6/14/2022
1.20.42 397 5/23/2022
1.20.18 418 4/20/2022
1.20.14 347 4/9/2022
1.20.10 344 4/7/2022
1.20.8 359 4/7/2022
1.19.79 348 4/3/2022
1.19.78 350 4/1/2022
1.19.60 342 3/27/2022
1.19.53 337 3/19/2022
1.19.52 326 3/19/2022
1.19.51 334 3/19/2022
1.19.50 338 3/19/2022
1.19.48 330 3/19/2022
1.19.45 351 3/15/2022
1.19.44 335 3/15/2022
1.19.43 337 3/14/2022
1.19.42 380 3/11/2022
1.19.38 340 3/9/2022
1.19.36 323 3/9/2022
1.19.35 321 3/9/2022
1.19.34 336 3/8/2022
1.19.32 338 3/7/2022
1.19.30 337 3/7/2022
1.19.26 335 3/7/2022
1.19.25 328 3/7/2022
1.19.21 347 3/7/2022
1.19.20 336 3/7/2022
1.19.17 338 3/6/2022
1.19.16 339 3/4/2022
1.19.11 336 3/4/2022
1.19.7 344 3/3/2022
1.19.1 332 3/3/2022
1.18.62 340 3/2/2022
1.18.61 338 3/1/2022
1.18.57 339 2/25/2022
1.18.56 355 2/24/2022
1.18.52 359 2/22/2022
1.18.32 362 2/11/2022
1.18.23 339 2/11/2022
1.18.22 356 2/8/2022
1.18.2 382 2/6/2022
1.17.57 351 2/2/2022
1.17.52 375 1/28/2022
1.17.50 355 1/28/2022
1.17.38 355 1/28/2022
1.17.3 247 1/9/2022
1.16.2 257 12/7/2021
1.16.1 236 12/2/2021
1.15.95 259 11/18/2021
1.15.88 235 11/17/2021
1.15.86 245 11/17/2021
1.15.77 271 11/16/2021
1.15.76 249 11/16/2021
1.14.28 280 11/8/2021
1.14.9 228 12/7/2021
1.14.8 230 12/7/2021
1.14.6 312 10/26/2021
1.14.1 285 10/26/2021
1.11.14 1,034 8/24/2021
1.11.4 287 8/19/2021
1.11.3-gd5620b5868 174 8/19/2021
1.0.94 934 8/4/2021
1.0.93 310 8/2/2021
1.0.89 290 7/28/2021
1.0.88 484 7/22/2021
1.0.87 292 7/15/2021
1.0.85 516 2/9/2021
1.0.83 386 11/18/2020
1.0.82 358 11/18/2020
1.0.80 380 10/21/2020
1.0.79 405 10/20/2020
1.0.75 359 10/15/2020
1.0.74 383 10/6/2020
1.0.73 500 9/17/2020
1.0.72 469 8/13/2020
1.0.71 386 8/12/2020
1.0.70 422 8/11/2020
1.0.69 427 6/14/2020
1.0.68 442 6/14/2020
1.0.67 456 5/20/2020
1.0.66 404 5/20/2020
1.0.65 424 5/20/2020
1.0.63 409 5/19/2020
1.0.62 430 5/18/2020
1.0.61 405 5/18/2020
1.0.59 422 5/18/2020
1.0.58 432 5/15/2020
1.0.57 413 5/15/2020
1.0.56 385 5/14/2020
1.0.55 406 5/7/2020
1.0.52 433 4/9/2020
1.0.40 449 3/27/2020
1.0.39 426 3/26/2020
1.0.38 423 3/26/2020
1.0.35 462 3/13/2020
1.0.33 464 3/13/2020
1.0.32 489 3/13/2020
1.0.27 456 3/5/2020
1.0.26 457 3/5/2020
1.0.18 431 12/9/2019
1.0.15 435 10/21/2019
1.0.13 435 10/21/2019
1.0.10 441 10/17/2019
1.0.9 455 10/16/2019
1.0.8 442 10/16/2019
1.0.7 455 10/16/2019
1.0.6 462 10/16/2019
1.0.5 465 10/12/2019
1.0.4 444 10/12/2019
1.0.3 438 10/8/2019
1.0.1 467 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