Meraki.Api 1.47.11

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Meraki.Api --version 1.47.11                
NuGet\Install-Package Meraki.Api -Version 1.47.11                
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.47.11" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Meraki.Api --version 1.47.11                
#r "nuget: Meraki.Api, 1.47.11"                
#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.47.11

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

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.7 97 8/22/2024
1.49.6 72 8/21/2024
1.49.5 89 8/19/2024
1.49.4 69 8/19/2024
1.49.1 91 8/15/2024
1.48.9 108 8/12/2024
1.48.8 89 8/7/2024
1.46.13 105 7/5/2024
1.46.12 113 7/3/2024
1.46.11 81 7/3/2024
1.46.10 90 7/2/2024
1.46.9 81 6/24/2024
1.46.6 74 6/24/2024
1.46.2 192 5/20/2024
1.46.1 94 5/17/2024
1.45.27 240 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 101 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 467 12/12/2023
1.40.14 110 12/12/2023
1.39.1 136 12/11/2023
1.38.30 215 11/30/2023
1.38.27 159 11/15/2023
1.38.24 119 11/13/2023
1.38.23 112 11/10/2023
1.38.20 115 11/7/2023
1.38.18 124 11/1/2023
1.38.16 158 10/24/2023
1.38.15 131 10/24/2023
1.38.13 123 10/24/2023
1.38.12 216 10/19/2023
1.38.11 106 10/19/2023
1.38.10 111 10/19/2023
1.38.7 117 10/16/2023
1.38.2 149 10/8/2023
1.38.1 133 10/7/2023
1.37.22 138 10/5/2023
1.37.19 116 10/5/2023
1.37.17 125 10/4/2023
1.37.16 119 10/4/2023
1.37.15 124 10/4/2023
1.37.14 127 10/4/2023
1.37.13 120 10/4/2023
1.37.12 136 10/3/2023
1.37.9 120 10/3/2023
1.37.8 142 9/29/2023
1.37.7 113 9/25/2023
1.37.1 123 9/21/2023
1.36.65 110 9/21/2023
1.36.53 215 9/10/2023
1.36.30 168 9/5/2023
1.36.24 143 8/31/2023
1.36.20 178 8/28/2023
1.36.19 140 8/25/2023
1.36.17 162 8/25/2023
1.36.16 219 8/17/2023
1.36.15 143 8/17/2023
1.36.14 142 8/17/2023
1.36.13 106 8/17/2023
1.36.12 153 8/16/2023
1.36.10 143 8/14/2023
1.36.9 113 8/14/2023
1.36.8 137 8/10/2023
1.36.7 123 8/8/2023
1.36.5 171 8/7/2023
1.36.3 130 8/7/2023
1.36.2 137 8/7/2023
1.34.75 128 8/3/2023
1.34.65 255 7/14/2023
1.34.64 162 7/14/2023
1.34.63 189 7/10/2023
1.34.62 151 7/10/2023
1.34.60 138 7/9/2023
1.34.56 143 7/9/2023
1.34.53 153 7/6/2023
1.34.51 144 7/6/2023
1.34.49 135 7/6/2023
1.34.39 137 7/6/2023
1.34.35 153 7/6/2023
1.34.33 195 7/3/2023
1.34.29 140 7/3/2023
1.34.28 135 7/3/2023
1.34.26 216 7/3/2023
1.34.25 136 7/3/2023
1.34.22 147 7/2/2023
1.34.20 158 7/2/2023
1.34.19 152 6/30/2023
1.34.18 125 6/30/2023
1.34.7 137 6/30/2023
1.34.5 160 6/30/2023
1.34.1 137 6/30/2023
1.33.22 176 6/28/2023
1.33.20 143 6/26/2023
1.33.18 279 6/19/2023
1.33.17 213 6/13/2023
1.33.15 150 6/13/2023
1.33.8 361 5/23/2023
1.33.6 153 5/22/2023
1.33.3 162 5/22/2023
1.32.11 187 5/16/2023
1.32.9 190 5/11/2023
1.32.7 166 5/10/2023
1.32.6 167 5/10/2023
1.32.4 218 4/28/2023
1.32.3 203 4/25/2023
1.32.2 185 4/25/2023
1.31.51 182 4/22/2023
1.31.48 218 4/21/2023
1.31.47 191 4/21/2023
1.31.46 225 4/17/2023
1.31.45 198 4/17/2023
1.31.41 204 4/11/2023
1.31.40 232 4/11/2023
1.31.34 222 4/11/2023
1.31.31 219 4/4/2023
1.31.24 226 4/3/2023
1.31.23 230 4/1/2023
1.31.19 253 3/28/2023
1.31.16 227 3/28/2023
1.31.14 224 3/27/2023
1.31.13 237 3/27/2023
1.30.26 500 3/22/2023
1.30.23 350 3/15/2023
1.30.20 250 3/15/2023
1.30.18 302 2/28/2023
1.30.15 251 2/27/2023
1.30.11 435 2/24/2023
1.30.9 302 2/22/2023
1.30.7 271 2/20/2023
1.30.5 291 2/20/2023
1.30.3 281 2/7/2023
1.29.15 284 1/31/2023
1.29.13 294 1/31/2023
1.29.12 291 1/27/2023
1.29.11 303 1/25/2023
1.29.8 327 1/17/2023
1.29.6 297 1/17/2023
1.29.4 315 1/16/2023
1.29.1 299 1/13/2023
1.28.6 314 1/10/2023
1.28.4 350 1/6/2023
1.28.1 318 12/13/2022
1.27.31 311 12/9/2022
1.27.30 286 12/9/2022
1.27.28 330 12/5/2022
1.27.25 339 11/30/2022
1.27.21 319 11/30/2022
1.27.17 367 11/22/2022
1.27.15 334 11/18/2022
1.27.6 354 11/16/2022
1.26.27 428 11/10/2022
1.26.24 380 11/7/2022
1.26.22 389 11/2/2022
1.26.8 377 10/30/2022
1.26.7 389 10/26/2022
1.26.5 429 10/17/2022
1.26.1 425 10/14/2022
1.25.13 417 10/10/2022
1.25.11 400 10/10/2022
1.25.10 399 10/10/2022
1.25.9 400 10/4/2022
1.25.7 446 9/16/2022
1.25.4 460 9/16/2022
1.25.3 455 9/15/2022
1.25.2 430 9/12/2022
1.24.23 422 9/5/2022
1.24.20 435 8/26/2022
1.24.12 466 8/12/2022
1.24.9 452 8/11/2022
1.24.8 452 8/11/2022
1.24.7 434 8/11/2022
1.24.6 429 8/11/2022
1.24.5 469 8/11/2022
1.24.3 457 8/11/2022
1.23.9 466 7/26/2022
1.23.5 574 7/19/2022
1.22.23 463 7/15/2022
1.22.19 525 7/7/2022
1.22.9 516 6/30/2022
1.22.5 508 6/14/2022
1.22.4 475 6/14/2022
1.22.3 479 6/14/2022
1.20.42 544 5/23/2022
1.20.18 580 4/20/2022
1.20.14 475 4/9/2022
1.20.10 462 4/7/2022
1.20.8 469 4/7/2022
1.19.79 484 4/3/2022
1.19.78 487 4/1/2022
1.19.60 486 3/27/2022
1.19.53 482 3/19/2022
1.19.52 462 3/19/2022
1.19.51 457 3/19/2022
1.19.50 464 3/19/2022
1.19.48 459 3/19/2022
1.19.45 495 3/15/2022
1.19.44 457 3/15/2022
1.19.43 495 3/14/2022
1.19.42 528 3/11/2022
1.19.38 503 3/9/2022
1.19.36 468 3/9/2022
1.19.35 483 3/9/2022
1.19.34 469 3/8/2022
1.19.32 482 3/7/2022
1.19.30 480 3/7/2022
1.19.26 482 3/7/2022
1.19.25 459 3/7/2022
1.19.21 479 3/7/2022
1.19.20 497 3/7/2022
1.19.17 467 3/6/2022
1.19.16 474 3/4/2022
1.19.11 465 3/4/2022
1.19.7 470 3/3/2022
1.19.1 448 3/3/2022
1.18.62 472 3/2/2022
1.18.61 484 3/1/2022
1.18.57 470 2/25/2022
1.18.56 491 2/24/2022
1.18.52 477 2/22/2022
1.18.32 500 2/11/2022
1.18.23 473 2/11/2022
1.18.22 510 2/8/2022
1.18.2 503 2/6/2022
1.17.57 488 2/2/2022
1.17.52 500 1/28/2022 1.17.52 is deprecated because it has critical bugs.
1.17.50 507 1/28/2022
1.17.38 489 1/28/2022
1.17.3 341 1/9/2022
1.16.2 334 12/7/2021
1.16.1 327 12/2/2021
1.15.95 382 11/18/2021
1.15.88 358 11/17/2021
1.15.86 327 11/17/2021
1.15.77 361 11/16/2021
1.15.76 346 11/16/2021
1.14.28 376 11/8/2021
1.14.9 316 12/7/2021
1.14.8 328 12/7/2021
1.14.6 412 10/26/2021
1.14.1 368 10/26/2021
1.11.14 1,353 8/24/2021
1.11.4 378 8/19/2021
1.11.3-gd5620b5868 234 8/19/2021
1.0.94 1,223 8/4/2021
1.0.93 413 8/2/2021
1.0.89 416 7/28/2021
1.0.88 585 7/22/2021
1.0.87 366 7/15/2021
1.0.85 619 2/9/2021
1.0.83 477 11/18/2020
1.0.82 438 11/18/2020
1.0.80 475 10/21/2020
1.0.79 506 10/20/2020
1.0.75 434 10/15/2020
1.0.74 494 10/6/2020
1.0.73 604 9/17/2020
1.0.72 579 8/13/2020
1.0.71 496 8/12/2020
1.0.70 516 8/11/2020
1.0.69 524 6/14/2020
1.0.68 566 6/14/2020
1.0.67 582 5/20/2020
1.0.66 502 5/20/2020
1.0.65 527 5/20/2020
1.0.63 532 5/19/2020
1.0.62 549 5/18/2020
1.0.61 483 5/18/2020
1.0.59 513 5/18/2020
1.0.58 514 5/15/2020
1.0.57 529 5/15/2020
1.0.56 502 5/14/2020
1.0.55 513 5/7/2020
1.0.52 542 4/9/2020
1.0.40 557 3/27/2020
1.0.39 560 3/26/2020
1.0.38 525 3/26/2020
1.0.35 599 3/13/2020
1.0.33 576 3/13/2020
1.0.32 586 3/13/2020
1.0.27 537 3/5/2020
1.0.26 570 3/5/2020
1.0.18 546 12/9/2019
1.0.15 539 10/21/2019
1.0.13 514 10/21/2019
1.0.10 547 10/17/2019
1.0.9 553 10/16/2019
1.0.8 571 10/16/2019
1.0.7 561 10/16/2019
1.0.6 560 10/16/2019
1.0.5 565 10/12/2019
1.0.4 543 10/12/2019
1.0.3 544 10/8/2019
1.0.1 576 10/7/2019
0.1.20-alpha 391 10/7/2019
0.1.19-alpha 365 10/7/2019
0.1.18-alpha 345 10/4/2019
0.1.16-alpha 375 10/1/2019
0.1.14-alpha 337 9/30/2019
0.1.13-alpha 377 9/29/2019
0.1.12-alpha 380 9/29/2019
0.1.11-alpha 364 9/29/2019
0.1.10-alpha 372 9/28/2019
0.1.9-alpha 362 9/28/2019
0.1.7-alpha 373 9/16/2019
0.1.6-alpha 352 9/16/2019
0.1.5-alpha 370 9/15/2019
0.1.3-alpha 348 9/12/2019
0.1.2-alpha 378 9/12/2019