Meraki.Api 1.51.45

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

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

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.48 49 11/21/2024
1.51.47 42 11/21/2024
1.51.46 39 11/21/2024
1.51.45 39 11/21/2024
1.51.43 79 11/18/2024
1.51.20 106 11/13/2024
1.51.18 209 11/5/2024
1.51.17 170 10/29/2024
1.51.15 146 10/24/2024
1.51.12 119 10/22/2024
1.51.7 82 10/22/2024
1.51.6 67 10/21/2024
1.51.5 73 10/21/2024
1.50.4 336 10/3/2024
1.50.3 101 10/3/2024
1.50.1 99 10/3/2024
1.49.14 250 9/18/2024
1.49.11 158 9/10/2024
1.49.9 175 8/30/2024
1.49.7 161 8/22/2024
1.49.6 123 8/21/2024
1.49.5 141 8/19/2024
1.49.4 118 8/19/2024
1.49.1 145 8/15/2024
1.48.9 164 8/12/2024
1.48.8 132 8/7/2024
1.46.13 131 7/5/2024
1.46.12 139 7/3/2024
1.46.11 103 7/3/2024
1.46.10 118 7/2/2024
1.46.9 107 6/24/2024
1.46.6 96 6/24/2024
1.46.2 214 5/20/2024
1.46.1 119 5/17/2024
1.45.27 283 4/24/2024
1.45.26 119 4/23/2024
1.43.46 157 4/17/2024
1.43.44 174 4/2/2024
1.43.43 127 4/2/2024
1.43.40 122 3/27/2024
1.43.34 177 3/17/2024
1.43.33 124 3/5/2024
1.43.32 131 3/1/2024
1.43.30 135 2/26/2024
1.42.5 148 2/21/2024
1.41.22 538 2/9/2024
1.41.18 111 2/5/2024
1.41.16 131 1/30/2024
1.41.14 118 1/30/2024
1.41.8 129 1/29/2024
1.40.15 521 12/12/2023
1.40.14 134 12/12/2023
1.39.1 157 12/11/2023
1.38.30 236 11/30/2023
1.38.27 192 11/15/2023
1.38.24 140 11/13/2023
1.38.23 138 11/10/2023
1.38.20 143 11/7/2023
1.38.18 152 11/1/2023
1.38.16 182 10/24/2023
1.38.15 156 10/24/2023
1.38.13 155 10/24/2023
1.38.12 244 10/19/2023
1.38.11 129 10/19/2023
1.38.10 141 10/19/2023
1.38.7 144 10/16/2023
1.38.2 176 10/8/2023
1.38.1 168 10/7/2023
1.37.22 168 10/5/2023
1.37.19 149 10/5/2023
1.37.17 150 10/4/2023
1.37.16 152 10/4/2023
1.37.15 149 10/4/2023
1.37.14 150 10/4/2023
1.37.13 142 10/4/2023
1.37.12 164 10/3/2023
1.37.9 132 10/3/2023
1.37.8 168 9/29/2023
1.37.7 138 9/25/2023
1.37.1 155 9/21/2023
1.36.65 128 9/21/2023
1.36.53 226 9/10/2023
1.36.30 195 9/5/2023
1.36.24 176 8/31/2023
1.36.20 201 8/28/2023
1.36.19 167 8/25/2023
1.36.17 183 8/25/2023
1.36.16 241 8/17/2023
1.36.15 170 8/17/2023
1.36.14 164 8/17/2023
1.36.13 137 8/17/2023
1.36.12 185 8/16/2023
1.36.10 168 8/14/2023
1.36.9 138 8/14/2023
1.36.8 146 8/10/2023
1.36.7 149 8/8/2023
1.36.5 195 8/7/2023
1.36.3 156 8/7/2023
1.36.2 163 8/7/2023
1.34.75 154 8/3/2023
1.34.65 281 7/14/2023
1.34.64 178 7/14/2023
1.34.63 211 7/10/2023
1.34.62 177 7/10/2023
1.34.60 161 7/9/2023
1.34.56 169 7/9/2023
1.34.53 176 7/6/2023
1.34.51 169 7/6/2023
1.34.49 159 7/6/2023
1.34.39 163 7/6/2023
1.34.35 175 7/6/2023
1.34.33 220 7/3/2023
1.34.29 162 7/3/2023
1.34.28 161 7/3/2023
1.34.26 257 7/3/2023
1.34.25 155 7/3/2023
1.34.22 179 7/2/2023
1.34.20 188 7/2/2023
1.34.19 182 6/30/2023
1.34.18 145 6/30/2023
1.34.7 161 6/30/2023
1.34.5 186 6/30/2023
1.34.1 161 6/30/2023
1.33.22 202 6/28/2023
1.33.20 169 6/26/2023
1.33.18 302 6/19/2023
1.33.17 244 6/13/2023
1.33.15 173 6/13/2023
1.33.8 386 5/23/2023
1.33.6 177 5/22/2023
1.33.3 187 5/22/2023
1.32.11 210 5/16/2023
1.32.9 213 5/11/2023
1.32.7 191 5/10/2023
1.32.6 189 5/10/2023
1.32.4 240 4/28/2023
1.32.3 227 4/25/2023
1.32.2 208 4/25/2023
1.31.51 207 4/22/2023
1.31.48 241 4/21/2023
1.31.47 214 4/21/2023
1.31.46 245 4/17/2023
1.31.45 216 4/17/2023
1.31.41 228 4/11/2023
1.31.40 253 4/11/2023
1.31.34 246 4/11/2023
1.31.31 248 4/4/2023
1.31.24 248 4/3/2023
1.31.23 253 4/1/2023
1.31.19 279 3/28/2023
1.31.16 249 3/28/2023
1.31.14 254 3/27/2023
1.31.13 263 3/27/2023
1.30.26 520 3/22/2023
1.30.23 373 3/15/2023
1.30.20 271 3/15/2023
1.30.18 328 2/28/2023
1.30.15 271 2/27/2023
1.30.11 464 2/24/2023
1.30.9 329 2/22/2023
1.30.7 301 2/20/2023
1.30.5 314 2/20/2023
1.30.3 305 2/7/2023
1.29.15 308 1/31/2023
1.29.13 319 1/31/2023
1.29.12 314 1/27/2023
1.29.11 328 1/25/2023
1.29.8 357 1/17/2023
1.29.6 323 1/17/2023
1.29.4 341 1/16/2023
1.29.1 329 1/13/2023
1.28.6 341 1/10/2023
1.28.4 382 1/6/2023
1.28.1 348 12/13/2022
1.27.31 330 12/9/2022
1.27.30 308 12/9/2022
1.27.28 351 12/5/2022
1.27.25 362 11/30/2022
1.27.21 341 11/30/2022
1.27.17 389 11/22/2022
1.27.15 359 11/18/2022
1.27.6 383 11/16/2022
1.26.27 450 11/10/2022
1.26.24 403 11/7/2022
1.26.22 408 11/2/2022
1.26.8 398 10/30/2022
1.26.7 412 10/26/2022
1.26.5 451 10/17/2022
1.26.1 431 10/14/2022
1.25.13 440 10/10/2022
1.25.11 423 10/10/2022
1.25.10 421 10/10/2022
1.25.9 425 10/4/2022
1.25.7 466 9/16/2022
1.25.4 466 9/16/2022
1.25.3 477 9/15/2022
1.25.2 452 9/12/2022
1.24.23 452 9/5/2022
1.24.20 456 8/26/2022
1.24.12 491 8/12/2022
1.24.9 479 8/11/2022
1.24.8 476 8/11/2022
1.24.7 460 8/11/2022
1.24.6 453 8/11/2022
1.24.5 489 8/11/2022
1.24.3 487 8/11/2022
1.23.9 486 7/26/2022
1.23.5 598 7/19/2022
1.22.23 487 7/15/2022
1.22.19 549 7/7/2022
1.22.9 545 6/30/2022
1.22.5 532 6/14/2022
1.22.4 499 6/14/2022
1.22.3 507 6/14/2022
1.20.42 568 5/23/2022
1.20.18 586 4/20/2022
1.20.14 497 4/9/2022
1.20.10 486 4/7/2022
1.20.8 494 4/7/2022
1.19.79 506 4/3/2022
1.19.78 516 4/1/2022
1.19.60 509 3/27/2022
1.19.53 488 3/19/2022
1.19.52 486 3/19/2022
1.19.51 477 3/19/2022
1.19.50 487 3/19/2022
1.19.48 481 3/19/2022
1.19.45 520 3/15/2022
1.19.44 487 3/15/2022
1.19.43 521 3/14/2022
1.19.42 552 3/11/2022
1.19.38 527 3/9/2022
1.19.36 490 3/9/2022
1.19.35 507 3/9/2022
1.19.34 495 3/8/2022
1.19.32 505 3/7/2022
1.19.30 506 3/7/2022
1.19.26 488 3/7/2022
1.19.25 483 3/7/2022
1.19.21 509 3/7/2022
1.19.20 520 3/7/2022
1.19.17 491 3/6/2022
1.19.16 498 3/4/2022
1.19.11 490 3/4/2022
1.19.7 492 3/3/2022
1.19.1 470 3/3/2022
1.18.62 496 3/2/2022
1.18.61 517 3/1/2022
1.18.57 476 2/25/2022
1.18.56 514 2/24/2022
1.18.52 499 2/22/2022
1.18.32 525 2/11/2022
1.18.23 496 2/11/2022
1.18.22 534 2/8/2022
1.18.2 514 2/6/2022
1.17.57 510 2/2/2022
1.17.52 524 1/28/2022 1.17.52 is deprecated because it has critical bugs.
1.17.50 538 1/28/2022
1.17.38 511 1/28/2022
1.17.3 364 1/9/2022
1.16.2 356 12/7/2021
1.16.1 351 12/2/2021
1.15.95 413 11/18/2021
1.15.88 382 11/17/2021
1.15.86 351 11/17/2021
1.15.77 389 11/16/2021
1.15.76 368 11/16/2021
1.14.28 403 11/8/2021
1.14.9 338 12/7/2021
1.14.8 349 12/7/2021
1.14.6 439 10/26/2021
1.14.1 394 10/26/2021
1.11.14 1,416 8/24/2021
1.11.4 399 8/19/2021
1.11.3-gd5620b5868 256 8/19/2021
1.0.94 1,281 8/4/2021
1.0.93 438 8/2/2021
1.0.89 441 7/28/2021
1.0.88 613 7/22/2021
1.0.87 378 7/15/2021
1.0.85 643 2/9/2021
1.0.83 499 11/18/2020
1.0.82 465 11/18/2020
1.0.80 503 10/21/2020
1.0.79 528 10/20/2020
1.0.75 458 10/15/2020
1.0.74 518 10/6/2020
1.0.73 625 9/17/2020
1.0.72 597 8/13/2020
1.0.71 516 8/12/2020
1.0.70 536 8/11/2020
1.0.69 545 6/14/2020
1.0.68 593 6/14/2020
1.0.67 607 5/20/2020
1.0.66 523 5/20/2020
1.0.65 549 5/20/2020
1.0.63 558 5/19/2020
1.0.62 578 5/18/2020
1.0.61 504 5/18/2020
1.0.59 538 5/18/2020
1.0.58 537 5/15/2020
1.0.57 555 5/15/2020
1.0.56 533 5/14/2020
1.0.55 537 5/7/2020
1.0.52 568 4/9/2020
1.0.40 581 3/27/2020
1.0.39 587 3/26/2020
1.0.38 533 3/26/2020
1.0.35 624 3/13/2020
1.0.33 596 3/13/2020
1.0.32 611 3/13/2020
1.0.27 557 3/5/2020
1.0.26 594 3/5/2020
1.0.18 569 12/9/2019
1.0.15 561 10/21/2019
1.0.13 540 10/21/2019
1.0.10 569 10/17/2019
1.0.9 577 10/16/2019
1.0.8 600 10/16/2019
1.0.7 591 10/16/2019
1.0.6 582 10/16/2019
1.0.5 589 10/12/2019
1.0.4 562 10/12/2019
1.0.3 566 10/8/2019
1.0.1 601 10/7/2019
0.1.20-alpha 397 10/7/2019
0.1.19-alpha 388 10/7/2019
0.1.18-alpha 369 10/4/2019
0.1.16-alpha 397 10/1/2019
0.1.14-alpha 360 9/30/2019
0.1.13-alpha 398 9/29/2019
0.1.12-alpha 404 9/29/2019
0.1.11-alpha 383 9/29/2019
0.1.10-alpha 393 9/28/2019
0.1.9-alpha 391 9/28/2019
0.1.7-alpha 397 9/16/2019
0.1.6-alpha 376 9/16/2019
0.1.5-alpha 400 9/15/2019
0.1.3-alpha 354 9/12/2019
0.1.2-alpha 406 9/12/2019