Meraki.Api 1.46.2

dotnet add package Meraki.Api --version 1.46.2
NuGet\Install-Package Meraki.Api -Version 1.46.2
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.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Meraki.Api --version 1.46.2
#r "nuget: Meraki.Api, 1.46.2"
#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.2

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

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.46.2 121 5/20/2024
1.46.1 88 5/17/2024
1.45.27 219 4/24/2024
1.45.26 94 4/23/2024
1.43.46 108 4/17/2024
1.43.44 145 4/2/2024
1.43.43 92 4/2/2024
1.43.40 91 3/27/2024
1.43.34 146 3/17/2024
1.43.33 94 3/5/2024
1.43.32 100 3/1/2024
1.43.30 100 2/26/2024
1.42.5 93 2/21/2024
1.41.22 221 2/9/2024
1.41.18 79 2/5/2024
1.41.16 100 1/30/2024
1.41.14 80 1/30/2024
1.41.8 91 1/29/2024
1.40.15 392 12/12/2023
1.40.14 107 12/12/2023
1.39.1 127 12/11/2023
1.38.30 209 11/30/2023
1.38.27 157 11/15/2023
1.38.24 112 11/13/2023
1.38.23 110 11/10/2023
1.38.20 113 11/7/2023
1.38.18 122 11/1/2023
1.38.16 148 10/24/2023
1.38.15 124 10/24/2023
1.38.13 119 10/24/2023
1.38.12 214 10/19/2023
1.38.11 103 10/19/2023
1.38.10 107 10/19/2023
1.38.7 109 10/16/2023
1.38.2 145 10/8/2023
1.38.1 131 10/7/2023
1.37.22 136 10/5/2023
1.37.19 114 10/5/2023
1.37.17 123 10/4/2023
1.37.16 117 10/4/2023
1.37.15 122 10/4/2023
1.37.14 125 10/4/2023
1.37.13 118 10/4/2023
1.37.12 129 10/3/2023
1.37.9 118 10/3/2023
1.37.8 140 9/29/2023
1.37.7 112 9/25/2023
1.37.1 122 9/21/2023
1.36.65 109 9/21/2023
1.36.53 209 9/10/2023
1.36.30 161 9/5/2023
1.36.24 142 8/31/2023
1.36.20 171 8/28/2023
1.36.19 138 8/25/2023
1.36.17 155 8/25/2023
1.36.16 217 8/17/2023
1.36.15 142 8/17/2023
1.36.14 136 8/17/2023
1.36.13 105 8/17/2023
1.36.12 152 8/16/2023
1.36.10 136 8/14/2023
1.36.9 112 8/14/2023
1.36.8 133 8/10/2023
1.36.7 122 8/8/2023
1.36.5 165 8/7/2023
1.36.3 129 8/7/2023
1.36.2 136 8/7/2023
1.34.75 127 8/3/2023
1.34.65 253 7/14/2023
1.34.64 160 7/14/2023
1.34.63 182 7/10/2023
1.34.62 149 7/10/2023
1.34.60 136 7/9/2023
1.34.56 141 7/9/2023
1.34.53 151 7/6/2023
1.34.51 136 7/6/2023
1.34.49 133 7/6/2023
1.34.39 135 7/6/2023
1.34.35 151 7/6/2023
1.34.33 193 7/3/2023
1.34.29 138 7/3/2023
1.34.28 133 7/3/2023
1.34.26 185 7/3/2023
1.34.25 134 7/3/2023
1.34.22 145 7/2/2023
1.34.20 156 7/2/2023
1.34.19 150 6/30/2023
1.34.18 123 6/30/2023
1.34.7 129 6/30/2023
1.34.5 152 6/30/2023
1.34.1 135 6/30/2023
1.33.22 174 6/28/2023
1.33.20 141 6/26/2023
1.33.18 277 6/19/2023
1.33.17 211 6/13/2023
1.33.15 148 6/13/2023
1.33.8 360 5/23/2023
1.33.6 146 5/22/2023
1.33.3 161 5/22/2023
1.32.11 180 5/16/2023
1.32.9 189 5/11/2023
1.32.7 165 5/10/2023
1.32.6 160 5/10/2023
1.32.4 215 4/28/2023
1.32.3 200 4/25/2023
1.32.2 177 4/25/2023
1.31.51 179 4/22/2023
1.31.48 209 4/21/2023
1.31.47 188 4/21/2023
1.31.46 216 4/17/2023
1.31.45 195 4/17/2023
1.31.41 201 4/11/2023
1.31.40 229 4/11/2023
1.31.34 219 4/11/2023
1.31.31 216 4/4/2023
1.31.24 223 4/3/2023
1.31.23 227 4/1/2023
1.31.19 252 3/28/2023
1.31.16 226 3/28/2023
1.31.14 223 3/27/2023
1.31.13 236 3/27/2023
1.30.26 493 3/22/2023
1.30.23 349 3/15/2023
1.30.20 243 3/15/2023
1.30.18 300 2/28/2023
1.30.15 249 2/27/2023
1.30.11 432 2/24/2023
1.30.9 294 2/22/2023
1.30.7 269 2/20/2023
1.30.5 283 2/20/2023
1.30.3 279 2/7/2023
1.29.15 282 1/31/2023
1.29.13 291 1/31/2023
1.29.12 283 1/27/2023
1.29.11 301 1/25/2023
1.29.8 325 1/17/2023
1.29.6 295 1/17/2023
1.29.4 313 1/16/2023
1.29.1 297 1/13/2023
1.28.6 307 1/10/2023
1.28.4 348 1/6/2023
1.28.1 314 12/13/2022
1.27.31 302 12/9/2022
1.27.30 276 12/9/2022
1.27.28 326 12/5/2022
1.27.25 335 11/30/2022
1.27.21 315 11/30/2022
1.27.17 363 11/22/2022
1.27.15 330 11/18/2022
1.27.6 350 11/16/2022
1.26.27 424 11/10/2022
1.26.24 376 11/7/2022
1.26.22 385 11/2/2022
1.26.8 373 10/30/2022
1.26.7 383 10/26/2022
1.26.5 425 10/17/2022
1.26.1 421 10/14/2022
1.25.13 413 10/10/2022
1.25.11 390 10/10/2022
1.25.10 395 10/10/2022
1.25.9 396 10/4/2022
1.25.7 441 9/16/2022
1.25.4 455 9/16/2022
1.25.3 450 9/15/2022
1.25.2 425 9/12/2022
1.24.23 418 9/5/2022
1.24.20 430 8/26/2022
1.24.12 461 8/12/2022
1.24.9 447 8/11/2022
1.24.8 447 8/11/2022
1.24.7 429 8/11/2022
1.24.6 417 8/11/2022
1.24.5 459 8/11/2022
1.24.3 452 8/11/2022
1.23.9 461 7/26/2022
1.23.5 569 7/19/2022
1.22.23 458 7/15/2022
1.22.19 520 7/7/2022
1.22.9 511 6/30/2022
1.22.5 502 6/14/2022
1.22.4 464 6/14/2022
1.22.3 474 6/14/2022
1.20.42 534 5/23/2022
1.20.18 571 4/20/2022
1.20.14 471 4/9/2022
1.20.10 458 4/7/2022
1.20.8 465 4/7/2022
1.19.79 474 4/3/2022
1.19.78 482 4/1/2022
1.19.60 476 3/27/2022
1.19.53 470 3/19/2022
1.19.52 457 3/19/2022
1.19.51 451 3/19/2022
1.19.50 454 3/19/2022
1.19.48 454 3/19/2022
1.19.45 485 3/15/2022
1.19.44 452 3/15/2022
1.19.43 490 3/14/2022
1.19.42 523 3/11/2022
1.19.38 498 3/9/2022
1.19.36 463 3/9/2022
1.19.35 479 3/9/2022
1.19.34 464 3/8/2022
1.19.32 475 3/7/2022
1.19.30 473 3/7/2022
1.19.26 469 3/7/2022
1.19.25 452 3/7/2022
1.19.21 472 3/7/2022
1.19.20 484 3/7/2022
1.19.17 459 3/6/2022
1.19.16 466 3/4/2022
1.19.11 457 3/4/2022
1.19.7 457 3/3/2022
1.19.1 440 3/3/2022
1.18.62 467 3/2/2022
1.18.61 479 3/1/2022
1.18.57 466 2/25/2022
1.18.56 488 2/24/2022
1.18.52 473 2/22/2022
1.18.32 496 2/11/2022
1.18.23 469 2/11/2022
1.18.22 506 2/8/2022
1.18.2 497 2/6/2022
1.17.57 483 2/2/2022
1.17.52 495 1/28/2022
1.17.50 502 1/28/2022
1.17.38 478 1/28/2022
1.17.3 332 1/9/2022
1.16.2 331 12/7/2021
1.16.1 324 12/2/2021
1.15.95 373 11/18/2021
1.15.88 355 11/17/2021
1.15.86 324 11/17/2021
1.15.77 358 11/16/2021
1.15.76 343 11/16/2021
1.14.28 373 11/8/2021
1.14.9 308 12/7/2021
1.14.8 325 12/7/2021
1.14.6 409 10/26/2021
1.14.1 359 10/26/2021
1.11.14 1,336 8/24/2021
1.11.4 374 8/19/2021
1.11.3-gd5620b5868 232 8/19/2021
1.0.94 1,206 8/4/2021
1.0.93 408 8/2/2021
1.0.89 405 7/28/2021
1.0.88 579 7/22/2021
1.0.87 362 7/15/2021
1.0.85 609 2/9/2021
1.0.83 472 11/18/2020
1.0.82 434 11/18/2020
1.0.80 471 10/21/2020
1.0.79 502 10/20/2020
1.0.75 430 10/15/2020
1.0.74 490 10/6/2020
1.0.73 599 9/17/2020
1.0.72 570 8/13/2020
1.0.71 492 8/12/2020
1.0.70 513 8/11/2020
1.0.69 514 6/14/2020
1.0.68 562 6/14/2020
1.0.67 580 5/20/2020
1.0.66 498 5/20/2020
1.0.65 525 5/20/2020
1.0.63 530 5/19/2020
1.0.62 547 5/18/2020
1.0.61 479 5/18/2020
1.0.59 510 5/18/2020
1.0.58 512 5/15/2020
1.0.57 522 5/15/2020
1.0.56 498 5/14/2020
1.0.55 511 5/7/2020
1.0.52 540 4/9/2020
1.0.40 553 3/27/2020
1.0.39 557 3/26/2020
1.0.38 516 3/26/2020
1.0.35 596 3/13/2020
1.0.33 567 3/13/2020
1.0.32 581 3/13/2020
1.0.27 534 3/5/2020
1.0.26 567 3/5/2020
1.0.18 541 12/9/2019
1.0.15 536 10/21/2019
1.0.13 505 10/21/2019
1.0.10 544 10/17/2019
1.0.9 550 10/16/2019
1.0.8 568 10/16/2019
1.0.7 558 10/16/2019
1.0.6 557 10/16/2019
1.0.5 556 10/12/2019
1.0.4 539 10/12/2019
1.0.3 539 10/8/2019
1.0.1 567 10/7/2019
0.1.20-alpha 388 10/7/2019
0.1.19-alpha 364 10/7/2019
0.1.18-alpha 344 10/4/2019
0.1.16-alpha 374 10/1/2019
0.1.14-alpha 336 9/30/2019
0.1.13-alpha 376 9/29/2019
0.1.12-alpha 377 9/29/2019
0.1.11-alpha 362 9/29/2019
0.1.10-alpha 370 9/28/2019
0.1.9-alpha 359 9/28/2019
0.1.7-alpha 371 9/16/2019
0.1.6-alpha 351 9/16/2019
0.1.5-alpha 369 9/15/2019
0.1.3-alpha 345 9/12/2019
0.1.2-alpha 376 9/12/2019