Meraki.Api 1.46.13

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

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

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.49.9 103 8/30/2024
1.49.7 111 8/22/2024
1.49.6 78 8/21/2024
1.49.5 95 8/19/2024
1.49.4 75 8/19/2024
1.49.1 97 8/15/2024
1.48.9 115 8/12/2024
1.48.8 100 8/7/2024
1.46.13 107 7/5/2024
1.46.12 115 7/3/2024
1.46.11 83 7/3/2024
1.46.10 94 7/2/2024
1.46.9 83 6/24/2024
1.46.6 76 6/24/2024
1.46.2 192 5/20/2024
1.46.1 94 5/17/2024
1.45.27 241 4/24/2024
1.45.26 100 4/23/2024
1.43.46 126 4/17/2024
1.43.44 149 4/2/2024
1.43.43 102 4/2/2024
1.43.40 100 3/27/2024
1.43.34 158 3/17/2024
1.43.33 103 3/5/2024
1.43.32 109 3/1/2024
1.43.30 108 2/26/2024
1.42.5 107 2/21/2024
1.41.22 363 2/9/2024
1.41.18 83 2/5/2024
1.41.16 105 1/30/2024
1.41.14 86 1/30/2024
1.41.8 103 1/29/2024
1.40.15 471 12/12/2023
1.40.14 111 12/12/2023
1.39.1 137 12/11/2023
1.38.30 216 11/30/2023
1.38.27 162 11/15/2023
1.38.24 122 11/13/2023
1.38.23 115 11/10/2023
1.38.20 118 11/7/2023
1.38.18 127 11/1/2023
1.38.16 161 10/24/2023
1.38.15 134 10/24/2023
1.38.13 132 10/24/2023
1.38.12 219 10/19/2023
1.38.11 109 10/19/2023
1.38.10 114 10/19/2023
1.38.7 120 10/16/2023
1.38.2 152 10/8/2023
1.38.1 137 10/7/2023
1.37.22 141 10/5/2023
1.37.19 119 10/5/2023
1.37.17 128 10/4/2023
1.37.16 122 10/4/2023
1.37.15 129 10/4/2023
1.37.14 131 10/4/2023
1.37.13 123 10/4/2023
1.37.12 140 10/3/2023
1.37.9 123 10/3/2023
1.37.8 145 9/29/2023
1.37.7 116 9/25/2023
1.37.1 126 9/21/2023
1.36.65 113 9/21/2023
1.36.53 218 9/10/2023
1.36.30 171 9/5/2023
1.36.24 147 8/31/2023
1.36.20 179 8/28/2023
1.36.19 141 8/25/2023
1.36.17 163 8/25/2023
1.36.16 220 8/17/2023
1.36.15 144 8/17/2023
1.36.14 143 8/17/2023
1.36.13 107 8/17/2023
1.36.12 154 8/16/2023
1.36.10 144 8/14/2023
1.36.9 114 8/14/2023
1.36.8 138 8/10/2023
1.36.7 124 8/8/2023
1.36.5 172 8/7/2023
1.36.3 131 8/7/2023
1.36.2 138 8/7/2023
1.34.75 129 8/3/2023
1.34.65 258 7/14/2023
1.34.64 165 7/14/2023
1.34.63 192 7/10/2023
1.34.62 154 7/10/2023
1.34.60 141 7/9/2023
1.34.56 146 7/9/2023
1.34.53 156 7/6/2023
1.34.51 147 7/6/2023
1.34.49 138 7/6/2023
1.34.39 140 7/6/2023
1.34.35 156 7/6/2023
1.34.33 198 7/3/2023
1.34.29 143 7/3/2023
1.34.28 138 7/3/2023
1.34.26 219 7/3/2023
1.34.25 139 7/3/2023
1.34.22 150 7/2/2023
1.34.20 161 7/2/2023
1.34.19 155 6/30/2023
1.34.18 128 6/30/2023
1.34.7 140 6/30/2023
1.34.5 164 6/30/2023
1.34.1 140 6/30/2023
1.33.22 179 6/28/2023
1.33.20 146 6/26/2023
1.33.18 282 6/19/2023
1.33.17 216 6/13/2023
1.33.15 153 6/13/2023
1.33.8 364 5/23/2023
1.33.6 156 5/22/2023
1.33.3 165 5/22/2023
1.32.11 188 5/16/2023
1.32.9 193 5/11/2023
1.32.7 169 5/10/2023
1.32.6 170 5/10/2023
1.32.4 220 4/28/2023
1.32.3 206 4/25/2023
1.32.2 188 4/25/2023
1.31.51 185 4/22/2023
1.31.48 221 4/21/2023
1.31.47 194 4/21/2023
1.31.46 226 4/17/2023
1.31.45 199 4/17/2023
1.31.41 207 4/11/2023
1.31.40 235 4/11/2023
1.31.34 225 4/11/2023
1.31.31 222 4/4/2023
1.31.24 229 4/3/2023
1.31.23 233 4/1/2023
1.31.19 260 3/28/2023
1.31.16 228 3/28/2023
1.31.14 227 3/27/2023
1.31.13 241 3/27/2023
1.30.26 502 3/22/2023
1.30.23 352 3/15/2023
1.30.20 252 3/15/2023
1.30.18 304 2/28/2023
1.30.15 253 2/27/2023
1.30.11 437 2/24/2023
1.30.9 305 2/22/2023
1.30.7 274 2/20/2023
1.30.5 295 2/20/2023
1.30.3 284 2/7/2023
1.29.15 286 1/31/2023
1.29.13 296 1/31/2023
1.29.12 293 1/27/2023
1.29.11 305 1/25/2023
1.29.8 329 1/17/2023
1.29.6 299 1/17/2023
1.29.4 317 1/16/2023
1.29.1 301 1/13/2023
1.28.6 317 1/10/2023
1.28.4 354 1/6/2023
1.28.1 319 12/13/2022
1.27.31 312 12/9/2022
1.27.30 287 12/9/2022
1.27.28 331 12/5/2022
1.27.25 340 11/30/2022
1.27.21 320 11/30/2022
1.27.17 368 11/22/2022
1.27.15 335 11/18/2022
1.27.6 355 11/16/2022
1.26.27 429 11/10/2022
1.26.24 381 11/7/2022
1.26.22 390 11/2/2022
1.26.8 378 10/30/2022
1.26.7 390 10/26/2022
1.26.5 430 10/17/2022
1.26.1 426 10/14/2022
1.25.13 418 10/10/2022
1.25.11 401 10/10/2022
1.25.10 400 10/10/2022
1.25.9 401 10/4/2022
1.25.7 447 9/16/2022
1.25.4 461 9/16/2022
1.25.3 456 9/15/2022
1.25.2 431 9/12/2022
1.24.23 423 9/5/2022
1.24.20 436 8/26/2022
1.24.12 467 8/12/2022
1.24.9 453 8/11/2022
1.24.8 453 8/11/2022
1.24.7 435 8/11/2022
1.24.6 430 8/11/2022
1.24.5 470 8/11/2022
1.24.3 458 8/11/2022
1.23.9 467 7/26/2022
1.23.5 575 7/19/2022
1.22.23 464 7/15/2022
1.22.19 526 7/7/2022
1.22.9 517 6/30/2022
1.22.5 509 6/14/2022
1.22.4 476 6/14/2022
1.22.3 480 6/14/2022
1.20.42 545 5/23/2022
1.20.18 581 4/20/2022
1.20.14 476 4/9/2022
1.20.10 463 4/7/2022
1.20.8 470 4/7/2022
1.19.79 485 4/3/2022
1.19.78 493 4/1/2022
1.19.60 487 3/27/2022
1.19.53 483 3/19/2022
1.19.52 463 3/19/2022
1.19.51 458 3/19/2022
1.19.50 465 3/19/2022
1.19.48 460 3/19/2022
1.19.45 496 3/15/2022
1.19.44 458 3/15/2022
1.19.43 496 3/14/2022
1.19.42 529 3/11/2022
1.19.38 504 3/9/2022
1.19.36 469 3/9/2022
1.19.35 484 3/9/2022
1.19.34 470 3/8/2022
1.19.32 483 3/7/2022
1.19.30 481 3/7/2022
1.19.26 483 3/7/2022
1.19.25 460 3/7/2022
1.19.21 480 3/7/2022
1.19.20 498 3/7/2022
1.19.17 468 3/6/2022
1.19.16 475 3/4/2022
1.19.11 466 3/4/2022
1.19.7 471 3/3/2022
1.19.1 449 3/3/2022
1.18.62 473 3/2/2022
1.18.61 485 3/1/2022
1.18.57 471 2/25/2022
1.18.56 492 2/24/2022
1.18.52 478 2/22/2022
1.18.32 501 2/11/2022
1.18.23 474 2/11/2022
1.18.22 511 2/8/2022
1.18.2 509 2/6/2022
1.17.57 489 2/2/2022
1.17.52 501 1/28/2022 1.17.52 is deprecated because it has critical bugs.
1.17.50 508 1/28/2022
1.17.38 490 1/28/2022
1.17.3 342 1/9/2022
1.16.2 335 12/7/2021
1.16.1 328 12/2/2021
1.15.95 383 11/18/2021
1.15.88 359 11/17/2021
1.15.86 328 11/17/2021
1.15.77 368 11/16/2021
1.15.76 347 11/16/2021
1.14.28 377 11/8/2021
1.14.9 317 12/7/2021
1.14.8 329 12/7/2021
1.14.6 413 10/26/2021
1.14.1 369 10/26/2021
1.11.14 1,360 8/24/2021
1.11.4 379 8/19/2021
1.11.3-gd5620b5868 235 8/19/2021
1.0.94 1,230 8/4/2021
1.0.93 414 8/2/2021
1.0.89 417 7/28/2021
1.0.88 586 7/22/2021
1.0.87 367 7/15/2021
1.0.85 620 2/9/2021
1.0.83 478 11/18/2020
1.0.82 439 11/18/2020
1.0.80 476 10/21/2020
1.0.79 507 10/20/2020
1.0.75 435 10/15/2020
1.0.74 495 10/6/2020
1.0.73 605 9/17/2020
1.0.72 580 8/13/2020
1.0.71 497 8/12/2020
1.0.70 517 8/11/2020
1.0.69 525 6/14/2020
1.0.68 567 6/14/2020
1.0.67 583 5/20/2020
1.0.66 503 5/20/2020
1.0.65 529 5/20/2020
1.0.63 533 5/19/2020
1.0.62 550 5/18/2020
1.0.61 484 5/18/2020
1.0.59 514 5/18/2020
1.0.58 515 5/15/2020
1.0.57 530 5/15/2020
1.0.56 509 5/14/2020
1.0.55 514 5/7/2020
1.0.52 543 4/9/2020
1.0.40 558 3/27/2020
1.0.39 561 3/26/2020
1.0.38 526 3/26/2020
1.0.35 600 3/13/2020
1.0.33 577 3/13/2020
1.0.32 587 3/13/2020
1.0.27 538 3/5/2020
1.0.26 571 3/5/2020
1.0.18 547 12/9/2019
1.0.15 540 10/21/2019
1.0.13 515 10/21/2019
1.0.10 548 10/17/2019
1.0.9 554 10/16/2019
1.0.8 579 10/16/2019
1.0.7 567 10/16/2019
1.0.6 561 10/16/2019
1.0.5 566 10/12/2019
1.0.4 544 10/12/2019
1.0.3 545 10/8/2019
1.0.1 577 10/7/2019
0.1.20-alpha 392 10/7/2019
0.1.19-alpha 367 10/7/2019
0.1.18-alpha 346 10/4/2019
0.1.16-alpha 376 10/1/2019
0.1.14-alpha 338 9/30/2019
0.1.13-alpha 378 9/29/2019
0.1.12-alpha 381 9/29/2019
0.1.11-alpha 365 9/29/2019
0.1.10-alpha 373 9/28/2019
0.1.9-alpha 363 9/28/2019
0.1.7-alpha 374 9/16/2019
0.1.6-alpha 353 9/16/2019
0.1.5-alpha 371 9/15/2019
0.1.3-alpha 349 9/12/2019
0.1.2-alpha 385 9/12/2019