Meraki.Api 1.46.9

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

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

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.50.4 51 10/3/2024
1.50.3 43 10/3/2024
1.50.1 43 10/3/2024
1.49.14 197 9/18/2024
1.49.11 142 9/10/2024
1.49.9 169 8/30/2024
1.49.7 157 8/22/2024
1.49.6 119 8/21/2024
1.49.5 137 8/19/2024
1.49.4 114 8/19/2024
1.49.1 141 8/15/2024
1.48.9 160 8/12/2024
1.48.8 128 8/7/2024
1.46.13 128 7/5/2024
1.46.12 136 7/3/2024
1.46.11 100 7/3/2024
1.46.10 115 7/2/2024
1.46.9 104 6/24/2024
1.46.6 93 6/24/2024
1.46.2 211 5/20/2024
1.46.1 114 5/17/2024
1.45.27 280 4/24/2024
1.45.26 116 4/23/2024
1.43.46 145 4/17/2024
1.43.44 169 4/2/2024
1.43.43 122 4/2/2024
1.43.40 119 3/27/2024
1.43.34 174 3/17/2024
1.43.33 121 3/5/2024
1.43.32 128 3/1/2024
1.43.30 126 2/26/2024
1.42.5 145 2/21/2024
1.41.22 415 2/9/2024
1.41.18 106 2/5/2024
1.41.16 124 1/30/2024
1.41.14 107 1/30/2024
1.41.8 124 1/29/2024
1.40.15 508 12/12/2023
1.40.14 131 12/12/2023
1.39.1 154 12/11/2023
1.38.30 233 11/30/2023
1.38.27 189 11/15/2023
1.38.24 135 11/13/2023
1.38.23 133 11/10/2023
1.38.20 140 11/7/2023
1.38.18 147 11/1/2023
1.38.16 175 10/24/2023
1.38.15 153 10/24/2023
1.38.13 152 10/24/2023
1.38.12 239 10/19/2023
1.38.11 126 10/19/2023
1.38.10 138 10/19/2023
1.38.7 137 10/16/2023
1.38.2 173 10/8/2023
1.38.1 158 10/7/2023
1.37.22 165 10/5/2023
1.37.19 140 10/5/2023
1.37.17 147 10/4/2023
1.37.16 141 10/4/2023
1.37.15 146 10/4/2023
1.37.14 147 10/4/2023
1.37.13 139 10/4/2023
1.37.12 161 10/3/2023
1.37.9 127 10/3/2023
1.37.8 164 9/29/2023
1.37.7 134 9/25/2023
1.37.1 151 9/21/2023
1.36.65 122 9/21/2023
1.36.53 222 9/10/2023
1.36.30 191 9/5/2023
1.36.24 172 8/31/2023
1.36.20 197 8/28/2023
1.36.19 163 8/25/2023
1.36.17 179 8/25/2023
1.36.16 237 8/17/2023
1.36.15 163 8/17/2023
1.36.14 160 8/17/2023
1.36.13 126 8/17/2023
1.36.12 181 8/16/2023
1.36.10 164 8/14/2023
1.36.9 134 8/14/2023
1.36.8 142 8/10/2023
1.36.7 145 8/8/2023
1.36.5 191 8/7/2023
1.36.3 152 8/7/2023
1.36.2 159 8/7/2023
1.34.75 150 8/3/2023
1.34.65 277 7/14/2023
1.34.64 174 7/14/2023
1.34.63 207 7/10/2023
1.34.62 173 7/10/2023
1.34.60 157 7/9/2023
1.34.56 165 7/9/2023
1.34.53 172 7/6/2023
1.34.51 165 7/6/2023
1.34.49 155 7/6/2023
1.34.39 159 7/6/2023
1.34.35 171 7/6/2023
1.34.33 216 7/3/2023
1.34.29 158 7/3/2023
1.34.28 157 7/3/2023
1.34.26 237 7/3/2023
1.34.25 151 7/3/2023
1.34.22 169 7/2/2023
1.34.20 184 7/2/2023
1.34.19 178 6/30/2023
1.34.18 141 6/30/2023
1.34.7 157 6/30/2023
1.34.5 182 6/30/2023
1.34.1 157 6/30/2023
1.33.22 198 6/28/2023
1.33.20 165 6/26/2023
1.33.18 298 6/19/2023
1.33.17 234 6/13/2023
1.33.15 169 6/13/2023
1.33.8 383 5/23/2023
1.33.6 174 5/22/2023
1.33.3 184 5/22/2023
1.32.11 207 5/16/2023
1.32.9 210 5/11/2023
1.32.7 188 5/10/2023
1.32.6 186 5/10/2023
1.32.4 237 4/28/2023
1.32.3 224 4/25/2023
1.32.2 205 4/25/2023
1.31.51 204 4/22/2023
1.31.48 238 4/21/2023
1.31.47 211 4/21/2023
1.31.46 242 4/17/2023
1.31.45 213 4/17/2023
1.31.41 225 4/11/2023
1.31.40 250 4/11/2023
1.31.34 243 4/11/2023
1.31.31 245 4/4/2023
1.31.24 245 4/3/2023
1.31.23 250 4/1/2023
1.31.19 276 3/28/2023
1.31.16 246 3/28/2023
1.31.14 251 3/27/2023
1.31.13 260 3/27/2023
1.30.26 517 3/22/2023
1.30.23 370 3/15/2023
1.30.20 268 3/15/2023
1.30.18 325 2/28/2023
1.30.15 268 2/27/2023
1.30.11 461 2/24/2023
1.30.9 326 2/22/2023
1.30.7 298 2/20/2023
1.30.5 311 2/20/2023
1.30.3 302 2/7/2023
1.29.15 305 1/31/2023
1.29.13 316 1/31/2023
1.29.12 311 1/27/2023
1.29.11 325 1/25/2023
1.29.8 354 1/17/2023
1.29.6 320 1/17/2023
1.29.4 338 1/16/2023
1.29.1 320 1/13/2023
1.28.6 338 1/10/2023
1.28.4 379 1/6/2023
1.28.1 345 12/13/2022
1.27.31 327 12/9/2022
1.27.30 305 12/9/2022
1.27.28 348 12/5/2022
1.27.25 359 11/30/2022
1.27.21 338 11/30/2022
1.27.17 386 11/22/2022
1.27.15 350 11/18/2022
1.27.6 374 11/16/2022
1.26.27 447 11/10/2022
1.26.24 400 11/7/2022
1.26.22 405 11/2/2022
1.26.8 395 10/30/2022
1.26.7 409 10/26/2022
1.26.5 448 10/17/2022
1.26.1 428 10/14/2022
1.25.13 437 10/10/2022
1.25.11 420 10/10/2022
1.25.10 418 10/10/2022
1.25.9 422 10/4/2022
1.25.7 463 9/16/2022
1.25.4 463 9/16/2022
1.25.3 474 9/15/2022
1.25.2 449 9/12/2022
1.24.23 449 9/5/2022
1.24.20 453 8/26/2022
1.24.12 488 8/12/2022
1.24.9 470 8/11/2022
1.24.8 473 8/11/2022
1.24.7 451 8/11/2022
1.24.6 450 8/11/2022
1.24.5 486 8/11/2022
1.24.3 478 8/11/2022
1.23.9 483 7/26/2022
1.23.5 595 7/19/2022
1.22.23 484 7/15/2022
1.22.19 546 7/7/2022
1.22.9 542 6/30/2022
1.22.5 529 6/14/2022
1.22.4 496 6/14/2022
1.22.3 504 6/14/2022
1.20.42 565 5/23/2022
1.20.18 583 4/20/2022
1.20.14 494 4/9/2022
1.20.10 483 4/7/2022
1.20.8 491 4/7/2022
1.19.79 503 4/3/2022
1.19.78 513 4/1/2022
1.19.60 506 3/27/2022
1.19.53 485 3/19/2022
1.19.52 483 3/19/2022
1.19.51 474 3/19/2022
1.19.50 484 3/19/2022
1.19.48 478 3/19/2022
1.19.45 517 3/15/2022
1.19.44 478 3/15/2022
1.19.43 518 3/14/2022
1.19.42 549 3/11/2022
1.19.38 524 3/9/2022
1.19.36 487 3/9/2022
1.19.35 504 3/9/2022
1.19.34 486 3/8/2022
1.19.32 502 3/7/2022
1.19.30 503 3/7/2022
1.19.26 485 3/7/2022
1.19.25 480 3/7/2022
1.19.21 506 3/7/2022
1.19.20 517 3/7/2022
1.19.17 488 3/6/2022
1.19.16 495 3/4/2022
1.19.11 487 3/4/2022
1.19.7 489 3/3/2022
1.19.1 467 3/3/2022
1.18.62 493 3/2/2022
1.18.61 508 3/1/2022
1.18.57 473 2/25/2022
1.18.56 511 2/24/2022
1.18.52 496 2/22/2022
1.18.32 522 2/11/2022
1.18.23 493 2/11/2022
1.18.22 531 2/8/2022
1.18.2 511 2/6/2022
1.17.57 507 2/2/2022
1.17.52 520 1/28/2022 1.17.52 is deprecated because it has critical bugs.
1.17.50 535 1/28/2022
1.17.38 508 1/28/2022
1.17.3 361 1/9/2022
1.16.2 353 12/7/2021
1.16.1 348 12/2/2021
1.15.95 410 11/18/2021
1.15.88 379 11/17/2021
1.15.86 348 11/17/2021
1.15.77 386 11/16/2021
1.15.76 365 11/16/2021
1.14.28 394 11/8/2021
1.14.9 335 12/7/2021
1.14.8 346 12/7/2021
1.14.6 436 10/26/2021
1.14.1 389 10/26/2021
1.11.14 1,397 8/24/2021
1.11.4 396 8/19/2021
1.11.3-gd5620b5868 253 8/19/2021
1.0.94 1,261 8/4/2021
1.0.93 435 8/2/2021
1.0.89 438 7/28/2021
1.0.88 610 7/22/2021
1.0.87 375 7/15/2021
1.0.85 640 2/9/2021
1.0.83 496 11/18/2020
1.0.82 462 11/18/2020
1.0.80 500 10/21/2020
1.0.79 525 10/20/2020
1.0.75 455 10/15/2020
1.0.74 515 10/6/2020
1.0.73 622 9/17/2020
1.0.72 594 8/13/2020
1.0.71 513 8/12/2020
1.0.70 533 8/11/2020
1.0.69 541 6/14/2020
1.0.68 583 6/14/2020
1.0.67 603 5/20/2020
1.0.66 519 5/20/2020
1.0.65 545 5/20/2020
1.0.63 552 5/19/2020
1.0.62 568 5/18/2020
1.0.61 500 5/18/2020
1.0.59 534 5/18/2020
1.0.58 533 5/15/2020
1.0.57 550 5/15/2020
1.0.56 529 5/14/2020
1.0.55 531 5/7/2020
1.0.52 565 4/9/2020
1.0.40 578 3/27/2020
1.0.39 582 3/26/2020
1.0.38 528 3/26/2020
1.0.35 620 3/13/2020
1.0.33 593 3/13/2020
1.0.32 608 3/13/2020
1.0.27 554 3/5/2020
1.0.26 591 3/5/2020
1.0.18 566 12/9/2019
1.0.15 556 10/21/2019
1.0.13 535 10/21/2019
1.0.10 566 10/17/2019
1.0.9 572 10/16/2019
1.0.8 597 10/16/2019
1.0.7 588 10/16/2019
1.0.6 577 10/16/2019
1.0.5 584 10/12/2019
1.0.4 559 10/12/2019
1.0.3 563 10/8/2019
1.0.1 594 10/7/2019
0.1.20-alpha 394 10/7/2019
0.1.19-alpha 385 10/7/2019
0.1.18-alpha 366 10/4/2019
0.1.16-alpha 392 10/1/2019
0.1.14-alpha 355 9/30/2019
0.1.13-alpha 393 9/29/2019
0.1.12-alpha 401 9/29/2019
0.1.11-alpha 380 9/29/2019
0.1.10-alpha 390 9/28/2019
0.1.9-alpha 388 9/28/2019
0.1.7-alpha 394 9/16/2019
0.1.6-alpha 371 9/16/2019
0.1.5-alpha 395 9/15/2019
0.1.3-alpha 351 9/12/2019
0.1.2-alpha 401 9/12/2019