https://github.com/panoramicdata/auvik.api
Auvik API nuget package
https://github.com/panoramicdata/auvik.api
Last synced: about 1 year ago
JSON representation
Auvik API nuget package
- Host: GitHub
- URL: https://github.com/panoramicdata/auvik.api
- Owner: panoramicdata
- License: mit
- Created: 2020-10-07T23:03:09.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-10-26T17:43:26.000Z (over 2 years ago)
- Last Synced: 2025-03-26T21:37:43.216Z (about 1 year ago)
- Language: C#
- Size: 132 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Auvik.Api
[](https://www.nuget.org/packages/Auvik.Api/)
To use the Auvik 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 "Auvik.Api" - install the latest version
4. Create an API key in your User Profile in Auvik
5. Note your URL domain, username and API key.
## Example code (C# 8.0)
``` C#
using Auvik.Api;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace My.Project
{
public static class Program
{
public static async Task Main()
{
var auvikClient = new AuvikClient(
new AuvikClientOptions
{
// Ensure that the "us3" part of the URI
// matches your browser navigation bar
Uri = new Uri("https://auvikapi.us3.my.auvik.com;"),
Username = "you@yourdomain.com",
ApiKey = "YOUR API KEY GOES HERE"
}
);
await auvikClient
.Credentials
.VerifyCredentials()
.ConfigureAwait(false);
}
}
}
````
## API Documentation
The Auvik API documentation can be found here:
- [Auvik API documentation](https://auvikapi.us1.my.auvik.com/docs)