Meraki.Api 1.32.11

There is a newer version of this package available.
See the version list below for details.
dotnet add package Meraki.Api --version 1.32.11                
NuGet\Install-Package Meraki.Api -Version 1.32.11                
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.32.11" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Meraki.Api --version 1.32.11                
#r "nuget: Meraki.Api, 1.32.11"                
#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.32.11

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

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 = "YourProductName 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 Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
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.51.18 67 11/5/2024
1.51.17 135 10/29/2024
1.51.15 122 10/24/2024
1.51.12 113 10/22/2024
1.51.7 76 10/22/2024
1.51.6 59 10/21/2024
1.51.5 67 10/21/2024
1.50.4 327 10/3/2024
1.50.3 96 10/3/2024
1.50.1 94 10/3/2024
1.49.14 241 9/18/2024
1.49.11 154 9/10/2024
1.49.9 173 8/30/2024
1.49.7 159 8/22/2024
1.49.6 121 8/21/2024
1.49.5 139 8/19/2024
1.49.4 116 8/19/2024
1.49.1 143 8/15/2024
1.48.9 162 8/12/2024
1.48.8 130 8/7/2024
1.46.13 129 7/5/2024
1.46.12 137 7/3/2024
1.46.11 101 7/3/2024
1.46.10 116 7/2/2024
1.46.9 105 6/24/2024
1.46.6 94 6/24/2024
1.46.2 212 5/20/2024
1.46.1 117 5/17/2024
1.45.27 281 4/24/2024
1.45.26 117 4/23/2024
1.43.46 153 4/17/2024
1.43.44 172 4/2/2024
1.43.43 123 4/2/2024
1.43.40 120 3/27/2024
1.43.34 175 3/17/2024
1.43.33 122 3/5/2024
1.43.32 129 3/1/2024
1.43.30 133 2/26/2024
1.42.5 146 2/21/2024
1.41.22 509 2/9/2024
1.41.18 109 2/5/2024
1.41.16 127 1/30/2024
1.41.14 114 1/30/2024
1.41.8 127 1/29/2024
1.40.15 518 12/12/2023
1.40.14 132 12/12/2023
1.39.1 155 12/11/2023
1.38.30 234 11/30/2023
1.38.27 190 11/15/2023
1.38.24 138 11/13/2023
1.38.23 136 11/10/2023
1.38.20 141 11/7/2023
1.38.18 150 11/1/2023
1.38.16 178 10/24/2023
1.38.15 154 10/24/2023
1.38.13 153 10/24/2023
1.38.12 242 10/19/2023
1.38.11 127 10/19/2023
1.38.10 139 10/19/2023
1.38.7 140 10/16/2023
1.38.2 174 10/8/2023
1.38.1 166 10/7/2023
1.37.22 166 10/5/2023
1.37.19 147 10/5/2023
1.37.17 148 10/4/2023
1.37.16 150 10/4/2023
1.37.15 147 10/4/2023
1.37.14 148 10/4/2023
1.37.13 140 10/4/2023
1.37.12 162 10/3/2023
1.37.9 128 10/3/2023
1.37.8 166 9/29/2023
1.37.7 136 9/25/2023
1.37.1 153 9/21/2023
1.36.65 126 9/21/2023
1.36.53 224 9/10/2023
1.36.30 193 9/5/2023
1.36.24 174 8/31/2023
1.36.20 199 8/28/2023
1.36.19 165 8/25/2023
1.36.17 181 8/25/2023
1.36.16 239 8/17/2023
1.36.15 168 8/17/2023
1.36.14 162 8/17/2023
1.36.13 135 8/17/2023
1.36.12 183 8/16/2023
1.36.10 166 8/14/2023
1.36.9 136 8/14/2023
1.36.8 144 8/10/2023
1.36.7 147 8/8/2023
1.36.5 193 8/7/2023
1.36.3 154 8/7/2023
1.36.2 161 8/7/2023
1.34.75 152 8/3/2023
1.34.65 279 7/14/2023
1.34.64 176 7/14/2023
1.34.63 209 7/10/2023
1.34.62 175 7/10/2023
1.34.60 159 7/9/2023
1.34.56 167 7/9/2023
1.34.53 174 7/6/2023
1.34.51 167 7/6/2023
1.34.49 157 7/6/2023
1.34.39 161 7/6/2023
1.34.35 173 7/6/2023
1.34.33 218 7/3/2023
1.34.29 160 7/3/2023
1.34.28 159 7/3/2023
1.34.26 249 7/3/2023
1.34.25 153 7/3/2023
1.34.22 177 7/2/2023
1.34.20 186 7/2/2023
1.34.19 180 6/30/2023
1.34.18 143 6/30/2023
1.34.7 159 6/30/2023
1.34.5 184 6/30/2023
1.34.1 159 6/30/2023
1.33.22 200 6/28/2023
1.33.20 167 6/26/2023
1.33.18 300 6/19/2023
1.33.17 242 6/13/2023
1.33.15 171 6/13/2023
1.33.8 384 5/23/2023
1.33.6 175 5/22/2023
1.33.3 185 5/22/2023
1.32.11 208 5/16/2023
1.32.9 211 5/11/2023
1.32.7 189 5/10/2023
1.32.6 187 5/10/2023
1.32.4 238 4/28/2023
1.32.3 225 4/25/2023
1.32.2 206 4/25/2023
1.31.51 205 4/22/2023
1.31.48 239 4/21/2023
1.31.47 212 4/21/2023
1.31.46 243 4/17/2023
1.31.45 214 4/17/2023
1.31.41 226 4/11/2023
1.31.40 251 4/11/2023
1.31.34 244 4/11/2023
1.31.31 246 4/4/2023
1.31.24 246 4/3/2023
1.31.23 251 4/1/2023
1.31.19 277 3/28/2023
1.31.16 247 3/28/2023
1.31.14 252 3/27/2023
1.31.13 261 3/27/2023
1.30.26 518 3/22/2023
1.30.23 371 3/15/2023
1.30.20 269 3/15/2023
1.30.18 326 2/28/2023
1.30.15 269 2/27/2023
1.30.11 462 2/24/2023
1.30.9 327 2/22/2023
1.30.7 299 2/20/2023
1.30.5 312 2/20/2023
1.30.3 303 2/7/2023
1.29.15 306 1/31/2023
1.29.13 317 1/31/2023
1.29.12 312 1/27/2023
1.29.11 326 1/25/2023
1.29.8 355 1/17/2023
1.29.6 321 1/17/2023
1.29.4 339 1/16/2023
1.29.1 327 1/13/2023
1.28.6 339 1/10/2023
1.28.4 380 1/6/2023
1.28.1 346 12/13/2022
1.27.31 328 12/9/2022
1.27.30 306 12/9/2022
1.27.28 349 12/5/2022
1.27.25 360 11/30/2022
1.27.21 339 11/30/2022
1.27.17 387 11/22/2022
1.27.15 357 11/18/2022
1.27.6 381 11/16/2022
1.26.27 448 11/10/2022
1.26.24 401 11/7/2022
1.26.22 406 11/2/2022
1.26.8 396 10/30/2022
1.26.7 410 10/26/2022
1.26.5 449 10/17/2022
1.26.1 429 10/14/2022
1.25.13 438 10/10/2022
1.25.11 421 10/10/2022
1.25.10 419 10/10/2022
1.25.9 423 10/4/2022
1.25.7 464 9/16/2022
1.25.4 464 9/16/2022
1.25.3 475 9/15/2022
1.25.2 450 9/12/2022
1.24.23 450 9/5/2022
1.24.20 454 8/26/2022
1.24.12 489 8/12/2022
1.24.9 477 8/11/2022
1.24.8 474 8/11/2022
1.24.7 458 8/11/2022
1.24.6 451 8/11/2022
1.24.5 487 8/11/2022
1.24.3 485 8/11/2022
1.23.9 484 7/26/2022
1.23.5 596 7/19/2022
1.22.23 485 7/15/2022
1.22.19 547 7/7/2022
1.22.9 543 6/30/2022
1.22.5 530 6/14/2022
1.22.4 497 6/14/2022
1.22.3 505 6/14/2022
1.20.42 566 5/23/2022
1.20.18 584 4/20/2022
1.20.14 495 4/9/2022
1.20.10 484 4/7/2022
1.20.8 492 4/7/2022
1.19.79 504 4/3/2022
1.19.78 514 4/1/2022
1.19.60 507 3/27/2022
1.19.53 486 3/19/2022
1.19.52 484 3/19/2022
1.19.51 475 3/19/2022
1.19.50 485 3/19/2022
1.19.48 479 3/19/2022
1.19.45 518 3/15/2022
1.19.44 485 3/15/2022
1.19.43 519 3/14/2022
1.19.42 550 3/11/2022
1.19.38 525 3/9/2022
1.19.36 488 3/9/2022
1.19.35 505 3/9/2022
1.19.34 493 3/8/2022
1.19.32 503 3/7/2022
1.19.30 504 3/7/2022
1.19.26 486 3/7/2022
1.19.25 481 3/7/2022
1.19.21 507 3/7/2022
1.19.20 518 3/7/2022
1.19.17 489 3/6/2022
1.19.16 496 3/4/2022
1.19.11 488 3/4/2022
1.19.7 490 3/3/2022
1.19.1 468 3/3/2022
1.18.62 494 3/2/2022
1.18.61 515 3/1/2022
1.18.57 474 2/25/2022
1.18.56 512 2/24/2022
1.18.52 497 2/22/2022
1.18.32 523 2/11/2022
1.18.23 494 2/11/2022
1.18.22 532 2/8/2022
1.18.2 512 2/6/2022
1.17.57 508 2/2/2022
1.17.52 522 1/28/2022 1.17.52 is deprecated because it has critical bugs.
1.17.50 536 1/28/2022
1.17.38 509 1/28/2022
1.17.3 362 1/9/2022
1.16.2 354 12/7/2021
1.16.1 349 12/2/2021
1.15.95 411 11/18/2021
1.15.88 380 11/17/2021
1.15.86 349 11/17/2021
1.15.77 387 11/16/2021
1.15.76 366 11/16/2021
1.14.28 401 11/8/2021
1.14.9 336 12/7/2021
1.14.8 347 12/7/2021
1.14.6 437 10/26/2021
1.14.1 392 10/26/2021
1.11.14 1,414 8/24/2021
1.11.4 397 8/19/2021
1.11.3-gd5620b5868 254 8/19/2021
1.0.94 1,279 8/4/2021
1.0.93 436 8/2/2021
1.0.89 439 7/28/2021
1.0.88 611 7/22/2021
1.0.87 376 7/15/2021
1.0.85 641 2/9/2021
1.0.83 497 11/18/2020
1.0.82 463 11/18/2020
1.0.80 501 10/21/2020
1.0.79 526 10/20/2020
1.0.75 456 10/15/2020
1.0.74 516 10/6/2020
1.0.73 623 9/17/2020
1.0.72 595 8/13/2020
1.0.71 514 8/12/2020
1.0.70 534 8/11/2020
1.0.69 543 6/14/2020
1.0.68 591 6/14/2020
1.0.67 605 5/20/2020
1.0.66 521 5/20/2020
1.0.65 547 5/20/2020
1.0.63 556 5/19/2020
1.0.62 576 5/18/2020
1.0.61 502 5/18/2020
1.0.59 536 5/18/2020
1.0.58 535 5/15/2020
1.0.57 553 5/15/2020
1.0.56 531 5/14/2020
1.0.55 535 5/7/2020
1.0.52 566 4/9/2020
1.0.40 579 3/27/2020
1.0.39 585 3/26/2020
1.0.38 529 3/26/2020
1.0.35 622 3/13/2020
1.0.33 594 3/13/2020
1.0.32 609 3/13/2020
1.0.27 555 3/5/2020
1.0.26 592 3/5/2020
1.0.18 567 12/9/2019
1.0.15 559 10/21/2019
1.0.13 536 10/21/2019
1.0.10 567 10/17/2019
1.0.9 573 10/16/2019
1.0.8 598 10/16/2019
1.0.7 589 10/16/2019
1.0.6 578 10/16/2019
1.0.5 587 10/12/2019
1.0.4 560 10/12/2019
1.0.3 564 10/8/2019
1.0.1 597 10/7/2019
0.1.20-alpha 395 10/7/2019
0.1.19-alpha 386 10/7/2019
0.1.18-alpha 367 10/4/2019
0.1.16-alpha 395 10/1/2019
0.1.14-alpha 358 9/30/2019
0.1.13-alpha 394 9/29/2019
0.1.12-alpha 402 9/29/2019
0.1.11-alpha 381 9/29/2019
0.1.10-alpha 391 9/28/2019
0.1.9-alpha 389 9/28/2019
0.1.7-alpha 395 9/16/2019
0.1.6-alpha 372 9/16/2019
0.1.5-alpha 396 9/15/2019
0.1.3-alpha 352 9/12/2019
0.1.2-alpha 404 9/12/2019