Meraki.Api 1.34.7

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

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

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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.53.13 36 1/15/2025
1.53.12 31 1/15/2025
1.53.11 20 1/14/2025
1.51.52 32 1/13/2025
1.51.51 33 1/13/2025
1.51.50 55 1/8/2025
1.51.48 259 11/21/2024
1.51.47 100 11/21/2024
1.51.46 97 11/21/2024
1.51.45 92 11/21/2024
1.51.43 100 11/18/2024
1.51.20 129 11/13/2024
1.51.18 281 11/5/2024
1.51.17 184 10/29/2024
1.51.15 253 10/24/2024
1.51.12 132 10/22/2024
1.51.7 92 10/22/2024
1.51.6 80 10/21/2024
1.51.5 86 10/21/2024
1.50.4 346 10/3/2024
1.50.3 112 10/3/2024
1.50.1 108 10/3/2024
1.49.14 283 9/18/2024
1.49.11 172 9/10/2024
1.49.9 184 8/30/2024
1.49.7 170 8/22/2024
1.49.6 132 8/21/2024
1.49.5 150 8/19/2024
1.49.4 127 8/19/2024
1.49.1 156 8/15/2024
1.48.9 173 8/12/2024
1.48.8 141 8/7/2024
1.46.13 141 7/5/2024
1.46.12 149 7/3/2024
1.46.11 111 7/3/2024
1.46.10 130 7/2/2024
1.46.9 117 6/24/2024
1.46.6 106 6/24/2024
1.46.2 222 5/20/2024
1.46.1 127 5/17/2024
1.45.27 293 4/24/2024
1.45.26 125 4/23/2024
1.43.46 163 4/17/2024
1.43.44 180 4/2/2024
1.43.43 133 4/2/2024
1.43.40 128 3/27/2024
1.43.34 183 3/17/2024
1.43.33 130 3/5/2024
1.43.32 137 3/1/2024
1.43.30 141 2/26/2024
1.42.5 154 2/21/2024
1.41.22 634 2/9/2024
1.41.18 117 2/5/2024
1.41.16 137 1/30/2024
1.41.14 124 1/30/2024
1.41.8 137 1/29/2024
1.40.15 537 12/12/2023
1.40.14 140 12/12/2023
1.39.1 163 12/11/2023
1.38.30 242 11/30/2023
1.38.27 198 11/15/2023
1.38.24 146 11/13/2023
1.38.23 146 11/10/2023
1.38.20 149 11/7/2023
1.38.18 160 11/1/2023
1.38.16 190 10/24/2023
1.38.15 162 10/24/2023
1.38.13 161 10/24/2023
1.38.12 250 10/19/2023
1.38.11 135 10/19/2023
1.38.10 147 10/19/2023
1.38.7 150 10/16/2023
1.38.2 184 10/8/2023
1.38.1 174 10/7/2023
1.37.22 174 10/5/2023
1.37.19 155 10/5/2023
1.37.17 156 10/4/2023
1.37.16 158 10/4/2023
1.37.15 155 10/4/2023
1.37.14 156 10/4/2023
1.37.13 150 10/4/2023
1.37.12 170 10/3/2023
1.37.9 138 10/3/2023
1.37.8 174 9/29/2023
1.37.7 144 9/25/2023
1.37.1 161 9/21/2023
1.36.65 134 9/21/2023
1.36.53 232 9/10/2023
1.36.30 203 9/5/2023
1.36.24 184 8/31/2023
1.36.20 209 8/28/2023
1.36.19 175 8/25/2023
1.36.17 190 8/25/2023
1.36.16 249 8/17/2023
1.36.15 176 8/17/2023
1.36.14 172 8/17/2023
1.36.13 145 8/17/2023
1.36.12 191 8/16/2023
1.36.10 176 8/14/2023
1.36.9 146 8/14/2023
1.36.8 158 8/10/2023
1.36.7 156 8/8/2023
1.36.5 204 8/7/2023
1.36.3 165 8/7/2023
1.36.2 172 8/7/2023
1.34.75 162 8/3/2023
1.34.65 287 7/14/2023
1.34.64 186 7/14/2023
1.34.63 218 7/10/2023
1.34.62 187 7/10/2023
1.34.60 169 7/9/2023
1.34.56 179 7/9/2023
1.34.53 183 7/6/2023
1.34.51 177 7/6/2023
1.34.49 167 7/6/2023
1.34.39 169 7/6/2023
1.34.35 182 7/6/2023
1.34.33 228 7/3/2023
1.34.29 170 7/3/2023
1.34.28 169 7/3/2023
1.34.26 304 7/3/2023
1.34.25 162 7/3/2023
1.34.22 187 7/2/2023
1.34.20 194 7/2/2023
1.34.19 188 6/30/2023
1.34.18 153 6/30/2023
1.34.7 169 6/30/2023
1.34.5 194 6/30/2023
1.34.1 167 6/30/2023
1.33.22 210 6/28/2023
1.33.20 175 6/26/2023
1.33.18 310 6/19/2023
1.33.17 252 6/13/2023
1.33.15 181 6/13/2023
1.33.8 394 5/23/2023
1.33.6 184 5/22/2023
1.33.3 193 5/22/2023
1.32.11 219 5/16/2023
1.32.9 219 5/11/2023
1.32.7 197 5/10/2023
1.32.6 197 5/10/2023
1.32.4 248 4/28/2023
1.32.3 235 4/25/2023
1.32.2 214 4/25/2023
1.31.51 213 4/22/2023
1.31.48 247 4/21/2023
1.31.47 222 4/21/2023
1.31.46 252 4/17/2023
1.31.45 224 4/17/2023
1.31.41 240 4/11/2023
1.31.40 260 4/11/2023
1.31.34 254 4/11/2023
1.31.31 258 4/4/2023
1.31.24 254 4/3/2023
1.31.23 261 4/1/2023
1.31.19 288 3/28/2023
1.31.16 258 3/28/2023
1.31.14 264 3/27/2023
1.31.13 270 3/27/2023
1.30.26 527 3/22/2023
1.30.23 380 3/15/2023
1.30.20 278 3/15/2023
1.30.18 334 2/28/2023
1.30.15 279 2/27/2023
1.30.11 472 2/24/2023
1.30.9 335 2/22/2023
1.30.7 309 2/20/2023
1.30.5 322 2/20/2023
1.30.3 313 2/7/2023
1.29.15 316 1/31/2023
1.29.13 327 1/31/2023
1.29.12 322 1/27/2023
1.29.11 334 1/25/2023
1.29.8 363 1/17/2023
1.29.6 331 1/17/2023
1.29.4 349 1/16/2023
1.29.1 335 1/13/2023
1.28.6 349 1/10/2023
1.28.4 390 1/6/2023
1.28.1 356 12/13/2022
1.27.31 336 12/9/2022
1.27.30 316 12/9/2022
1.27.28 367 12/5/2022
1.27.25 370 11/30/2022
1.27.21 349 11/30/2022
1.27.17 399 11/22/2022
1.27.15 369 11/18/2022
1.27.6 393 11/16/2022
1.26.27 460 11/10/2022
1.26.24 413 11/7/2022
1.26.22 418 11/2/2022
1.26.8 406 10/30/2022
1.26.7 422 10/26/2022
1.26.5 460 10/17/2022
1.26.1 441 10/14/2022
1.25.13 450 10/10/2022
1.25.11 432 10/10/2022
1.25.10 431 10/10/2022
1.25.9 435 10/4/2022
1.25.7 477 9/16/2022
1.25.4 476 9/16/2022
1.25.3 487 9/15/2022
1.25.2 463 9/12/2022
1.24.23 460 9/5/2022
1.24.20 466 8/26/2022
1.24.12 499 8/12/2022
1.24.9 489 8/11/2022
1.24.8 484 8/11/2022
1.24.7 470 8/11/2022
1.24.6 461 8/11/2022
1.24.5 499 8/11/2022
1.24.3 496 8/11/2022
1.23.9 496 7/26/2022
1.23.5 608 7/19/2022
1.22.23 495 7/15/2022
1.22.19 559 7/7/2022
1.22.9 555 6/30/2022
1.22.5 544 6/14/2022
1.22.4 509 6/14/2022
1.22.3 517 6/14/2022
1.20.42 578 5/23/2022
1.20.18 596 4/20/2022
1.20.14 509 4/9/2022
1.20.10 496 4/7/2022
1.20.8 504 4/7/2022
1.19.79 516 4/3/2022
1.19.78 527 4/1/2022
1.19.60 519 3/27/2022
1.19.53 498 3/19/2022
1.19.52 496 3/19/2022
1.19.51 485 3/19/2022
1.19.50 497 3/19/2022
1.19.48 489 3/19/2022
1.19.45 528 3/15/2022
1.19.44 495 3/15/2022
1.19.43 531 3/14/2022
1.19.42 561 3/11/2022
1.19.38 535 3/9/2022
1.19.36 500 3/9/2022
1.19.35 517 3/9/2022
1.19.34 505 3/8/2022
1.19.32 515 3/7/2022
1.19.30 516 3/7/2022
1.19.26 496 3/7/2022
1.19.25 491 3/7/2022
1.19.21 519 3/7/2022
1.19.20 530 3/7/2022
1.19.17 499 3/6/2022
1.19.16 508 3/4/2022
1.19.11 500 3/4/2022
1.19.7 500 3/3/2022
1.19.1 478 3/3/2022
1.18.62 506 3/2/2022
1.18.61 527 3/1/2022
1.18.57 486 2/25/2022
1.18.56 524 2/24/2022
1.18.52 509 2/22/2022
1.18.32 535 2/11/2022
1.18.23 506 2/11/2022
1.18.22 544 2/8/2022
1.18.2 522 2/6/2022
1.17.57 526 2/2/2022
1.17.52 533 1/28/2022 1.17.52 is deprecated because it has critical bugs.
1.17.50 548 1/28/2022
1.17.38 521 1/28/2022
1.17.3 374 1/9/2022
1.16.2 366 12/7/2021
1.16.1 361 12/2/2021
1.15.95 423 11/18/2021
1.15.88 390 11/17/2021
1.15.86 361 11/17/2021
1.15.77 399 11/16/2021
1.15.76 378 11/16/2021
1.14.28 413 11/8/2021
1.14.9 348 12/7/2021
1.14.8 359 12/7/2021
1.14.6 449 10/26/2021
1.14.1 402 10/26/2021
1.11.14 1,432 8/24/2021
1.11.4 410 8/19/2021
1.11.3-gd5620b5868 262 8/19/2021
1.0.94 1,297 8/4/2021
1.0.93 448 8/2/2021
1.0.89 451 7/28/2021
1.0.88 621 7/22/2021
1.0.87 388 7/15/2021
1.0.85 653 2/9/2021
1.0.83 513 11/18/2020
1.0.82 475 11/18/2020
1.0.80 513 10/21/2020
1.0.79 536 10/20/2020
1.0.75 468 10/15/2020
1.0.74 528 10/6/2020
1.0.73 635 9/17/2020
1.0.72 607 8/13/2020
1.0.71 529 8/12/2020
1.0.70 544 8/11/2020
1.0.69 553 6/14/2020
1.0.68 601 6/14/2020
1.0.67 615 5/20/2020
1.0.66 532 5/20/2020
1.0.65 557 5/20/2020
1.0.63 566 5/19/2020
1.0.62 586 5/18/2020
1.0.61 512 5/18/2020
1.0.59 546 5/18/2020
1.0.58 545 5/15/2020
1.0.57 563 5/15/2020
1.0.56 542 5/14/2020
1.0.55 546 5/7/2020
1.0.52 576 4/9/2020
1.0.40 589 3/27/2020
1.0.39 595 3/26/2020
1.0.38 541 3/26/2020
1.0.35 632 3/13/2020
1.0.33 606 3/13/2020
1.0.32 619 3/13/2020
1.0.27 567 3/5/2020
1.0.26 602 3/5/2020
1.0.18 577 12/9/2019
1.0.15 569 10/21/2019
1.0.13 548 10/21/2019
1.0.10 577 10/17/2019
1.0.9 585 10/16/2019
1.0.8 608 10/16/2019
1.0.7 599 10/16/2019
1.0.6 590 10/16/2019
1.0.5 597 10/12/2019
1.0.4 570 10/12/2019
1.0.3 575 10/8/2019
1.0.1 609 10/7/2019
0.1.20-alpha 401 10/7/2019
0.1.19-alpha 392 10/7/2019
0.1.18-alpha 373 10/4/2019
0.1.16-alpha 401 10/1/2019
0.1.14-alpha 364 9/30/2019
0.1.13-alpha 402 9/29/2019
0.1.12-alpha 408 9/29/2019
0.1.11-alpha 387 9/29/2019
0.1.10-alpha 398 9/28/2019
0.1.9-alpha 395 9/28/2019
0.1.7-alpha 402 9/16/2019
0.1.6-alpha 381 9/16/2019
0.1.5-alpha 405 9/15/2019
0.1.3-alpha 358 9/12/2019
0.1.2-alpha 410 9/12/2019