Meraki.Api 1.49.7

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

// Install Meraki.Api as a Cake Tool
#tool nuget:?package=Meraki.Api&version=1.49.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. 
.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.11 64 9/10/2024
1.49.9 116 8/30/2024
1.49.7 135 8/22/2024
1.49.6 96 8/21/2024
1.49.5 115 8/19/2024
1.49.4 93 8/19/2024
1.49.1 119 8/15/2024
1.48.9 140 8/12/2024
1.48.8 107 8/7/2024
1.46.13 109 7/5/2024
1.46.12 117 7/3/2024
1.46.11 85 7/3/2024
1.46.10 96 7/2/2024
1.46.9 85 6/24/2024
1.46.6 78 6/24/2024
1.46.2 194 5/20/2024
1.46.1 95 5/17/2024
1.45.27 251 4/24/2024
1.45.26 102 4/23/2024
1.43.46 129 4/17/2024
1.43.44 151 4/2/2024
1.43.43 104 4/2/2024
1.43.40 102 3/27/2024
1.43.34 160 3/17/2024
1.43.33 104 3/5/2024
1.43.32 111 3/1/2024
1.43.30 109 2/26/2024
1.42.5 109 2/21/2024
1.41.22 393 2/9/2024
1.41.18 89 2/5/2024
1.41.16 108 1/30/2024
1.41.14 89 1/30/2024
1.41.8 106 1/29/2024
1.40.15 478 12/12/2023
1.40.14 113 12/12/2023
1.39.1 140 12/11/2023
1.38.30 218 11/30/2023
1.38.27 165 11/15/2023
1.38.24 122 11/13/2023
1.38.23 117 11/10/2023
1.38.20 122 11/7/2023
1.38.18 129 11/1/2023
1.38.16 163 10/24/2023
1.38.15 136 10/24/2023
1.38.13 135 10/24/2023
1.38.12 222 10/19/2023
1.38.11 112 10/19/2023
1.38.10 117 10/19/2023
1.38.7 122 10/16/2023
1.38.2 155 10/8/2023
1.38.1 140 10/7/2023
1.37.22 143 10/5/2023
1.37.19 122 10/5/2023
1.37.17 131 10/4/2023
1.37.16 124 10/4/2023
1.37.15 131 10/4/2023
1.37.14 133 10/4/2023
1.37.13 125 10/4/2023
1.37.12 143 10/3/2023
1.37.9 126 10/3/2023
1.37.8 147 9/29/2023
1.37.7 119 9/25/2023
1.37.1 128 9/21/2023
1.36.65 115 9/21/2023
1.36.53 221 9/10/2023
1.36.30 173 9/5/2023
1.36.24 150 8/31/2023
1.36.20 182 8/28/2023
1.36.19 144 8/25/2023
1.36.17 165 8/25/2023
1.36.16 223 8/17/2023
1.36.15 147 8/17/2023
1.36.14 146 8/17/2023
1.36.13 110 8/17/2023
1.36.12 157 8/16/2023
1.36.10 147 8/14/2023
1.36.9 117 8/14/2023
1.36.8 141 8/10/2023
1.36.7 127 8/8/2023
1.36.5 175 8/7/2023
1.36.3 134 8/7/2023
1.36.2 141 8/7/2023
1.34.75 132 8/3/2023
1.34.65 259 7/14/2023
1.34.64 166 7/14/2023
1.34.63 193 7/10/2023
1.34.62 155 7/10/2023
1.34.60 142 7/9/2023
1.34.56 147 7/9/2023
1.34.53 157 7/6/2023
1.34.51 148 7/6/2023
1.34.49 139 7/6/2023
1.34.39 141 7/6/2023
1.34.35 157 7/6/2023
1.34.33 199 7/3/2023
1.34.29 144 7/3/2023
1.34.28 139 7/3/2023
1.34.26 220 7/3/2023
1.34.25 140 7/3/2023
1.34.22 151 7/2/2023
1.34.20 162 7/2/2023
1.34.19 160 6/30/2023
1.34.18 129 6/30/2023
1.34.7 141 6/30/2023
1.34.5 165 6/30/2023
1.34.1 141 6/30/2023
1.33.22 180 6/28/2023
1.33.20 147 6/26/2023
1.33.18 283 6/19/2023
1.33.17 217 6/13/2023
1.33.15 154 6/13/2023
1.33.8 365 5/23/2023
1.33.6 157 5/22/2023
1.33.3 166 5/22/2023
1.32.11 189 5/16/2023
1.32.9 194 5/11/2023
1.32.7 170 5/10/2023
1.32.6 171 5/10/2023
1.32.4 221 4/28/2023
1.32.3 207 4/25/2023
1.32.2 189 4/25/2023
1.31.51 186 4/22/2023
1.31.48 222 4/21/2023
1.31.47 195 4/21/2023
1.31.46 227 4/17/2023
1.31.45 200 4/17/2023
1.31.41 208 4/11/2023
1.31.40 236 4/11/2023
1.31.34 226 4/11/2023
1.31.31 229 4/4/2023
1.31.24 230 4/3/2023
1.31.23 234 4/1/2023
1.31.19 261 3/28/2023
1.31.16 229 3/28/2023
1.31.14 228 3/27/2023
1.31.13 242 3/27/2023
1.30.26 505 3/22/2023
1.30.23 353 3/15/2023
1.30.20 253 3/15/2023
1.30.18 305 2/28/2023
1.30.15 254 2/27/2023
1.30.11 438 2/24/2023
1.30.9 306 2/22/2023
1.30.7 275 2/20/2023
1.30.5 296 2/20/2023
1.30.3 285 2/7/2023
1.29.15 287 1/31/2023
1.29.13 297 1/31/2023
1.29.12 294 1/27/2023
1.29.11 306 1/25/2023
1.29.8 336 1/17/2023
1.29.6 300 1/17/2023
1.29.4 318 1/16/2023
1.29.1 302 1/13/2023
1.28.6 318 1/10/2023
1.28.4 355 1/6/2023
1.28.1 320 12/13/2022
1.27.31 313 12/9/2022
1.27.30 288 12/9/2022
1.27.28 332 12/5/2022
1.27.25 341 11/30/2022
1.27.21 321 11/30/2022
1.27.17 369 11/22/2022
1.27.15 336 11/18/2022
1.27.6 356 11/16/2022
1.26.27 430 11/10/2022
1.26.24 382 11/7/2022
1.26.22 391 11/2/2022
1.26.8 379 10/30/2022
1.26.7 391 10/26/2022
1.26.5 431 10/17/2022
1.26.1 427 10/14/2022
1.25.13 419 10/10/2022
1.25.11 402 10/10/2022
1.25.10 401 10/10/2022
1.25.9 402 10/4/2022
1.25.7 448 9/16/2022
1.25.4 462 9/16/2022
1.25.3 457 9/15/2022
1.25.2 432 9/12/2022
1.24.23 424 9/5/2022
1.24.20 437 8/26/2022
1.24.12 468 8/12/2022
1.24.9 454 8/11/2022
1.24.8 454 8/11/2022
1.24.7 436 8/11/2022
1.24.6 431 8/11/2022
1.24.5 471 8/11/2022
1.24.3 459 8/11/2022
1.23.9 468 7/26/2022
1.23.5 576 7/19/2022
1.22.23 465 7/15/2022
1.22.19 527 7/7/2022
1.22.9 518 6/30/2022
1.22.5 510 6/14/2022
1.22.4 477 6/14/2022
1.22.3 481 6/14/2022
1.20.42 546 5/23/2022
1.20.18 582 4/20/2022
1.20.14 477 4/9/2022
1.20.10 464 4/7/2022
1.20.8 471 4/7/2022
1.19.79 486 4/3/2022
1.19.78 494 4/1/2022
1.19.60 488 3/27/2022
1.19.53 484 3/19/2022
1.19.52 464 3/19/2022
1.19.51 459 3/19/2022
1.19.50 466 3/19/2022
1.19.48 461 3/19/2022
1.19.45 497 3/15/2022
1.19.44 459 3/15/2022
1.19.43 497 3/14/2022
1.19.42 530 3/11/2022
1.19.38 505 3/9/2022
1.19.36 470 3/9/2022
1.19.35 485 3/9/2022
1.19.34 471 3/8/2022
1.19.32 484 3/7/2022
1.19.30 482 3/7/2022
1.19.26 484 3/7/2022
1.19.25 461 3/7/2022
1.19.21 487 3/7/2022
1.19.20 499 3/7/2022
1.19.17 469 3/6/2022
1.19.16 476 3/4/2022
1.19.11 467 3/4/2022
1.19.7 472 3/3/2022
1.19.1 450 3/3/2022
1.18.62 474 3/2/2022
1.18.61 486 3/1/2022
1.18.57 472 2/25/2022
1.18.56 493 2/24/2022
1.18.52 479 2/22/2022
1.18.32 502 2/11/2022
1.18.23 475 2/11/2022
1.18.22 512 2/8/2022
1.18.2 510 2/6/2022
1.17.57 490 2/2/2022
1.17.52 502 1/28/2022 1.17.52 is deprecated because it has critical bugs.
1.17.50 510 1/28/2022
1.17.38 491 1/28/2022
1.17.3 344 1/9/2022
1.16.2 336 12/7/2021
1.16.1 329 12/2/2021
1.15.95 384 11/18/2021
1.15.88 360 11/17/2021
1.15.86 329 11/17/2021
1.15.77 369 11/16/2021
1.15.76 348 11/16/2021
1.14.28 378 11/8/2021
1.14.9 318 12/7/2021
1.14.8 330 12/7/2021
1.14.6 414 10/26/2021
1.14.1 370 10/26/2021
1.11.14 1,361 8/24/2021
1.11.4 380 8/19/2021
1.11.3-gd5620b5868 236 8/19/2021
1.0.94 1,231 8/4/2021
1.0.93 415 8/2/2021
1.0.89 418 7/28/2021
1.0.88 593 7/22/2021
1.0.87 374 7/15/2021
1.0.85 621 2/9/2021
1.0.83 479 11/18/2020
1.0.82 440 11/18/2020
1.0.80 482 10/21/2020
1.0.79 508 10/20/2020
1.0.75 436 10/15/2020
1.0.74 496 10/6/2020
1.0.73 608 9/17/2020
1.0.72 581 8/13/2020
1.0.71 498 8/12/2020
1.0.70 518 8/11/2020
1.0.69 526 6/14/2020
1.0.68 568 6/14/2020
1.0.67 584 5/20/2020
1.0.66 504 5/20/2020
1.0.65 530 5/20/2020
1.0.63 534 5/19/2020
1.0.62 552 5/18/2020
1.0.61 485 5/18/2020
1.0.59 515 5/18/2020
1.0.58 516 5/15/2020
1.0.57 531 5/15/2020
1.0.56 510 5/14/2020
1.0.55 515 5/7/2020
1.0.52 545 4/9/2020
1.0.40 559 3/27/2020
1.0.39 562 3/26/2020
1.0.38 527 3/26/2020
1.0.35 601 3/13/2020
1.0.33 578 3/13/2020
1.0.32 588 3/13/2020
1.0.27 539 3/5/2020
1.0.26 572 3/5/2020
1.0.18 548 12/9/2019
1.0.15 541 10/21/2019
1.0.13 516 10/21/2019
1.0.10 549 10/17/2019
1.0.9 555 10/16/2019
1.0.8 580 10/16/2019
1.0.7 568 10/16/2019
1.0.6 562 10/16/2019
1.0.5 567 10/12/2019
1.0.4 545 10/12/2019
1.0.3 546 10/8/2019
1.0.1 578 10/7/2019
0.1.20-alpha 393 10/7/2019
0.1.19-alpha 368 10/7/2019
0.1.18-alpha 347 10/4/2019
0.1.16-alpha 377 10/1/2019
0.1.14-alpha 339 9/30/2019
0.1.13-alpha 379 9/29/2019
0.1.12-alpha 382 9/29/2019
0.1.11-alpha 366 9/29/2019
0.1.10-alpha 374 9/28/2019
0.1.9-alpha 364 9/28/2019
0.1.7-alpha 375 9/16/2019
0.1.6-alpha 354 9/16/2019
0.1.5-alpha 372 9/15/2019
0.1.3-alpha 350 9/12/2019
0.1.2-alpha 386 9/12/2019