Skip to content

panoramicdata/Cherwell.Api

Repository files navigation

Cherwell.Api

Nuget Nuget License: MIT Codacy Badge

This project implements access to the v1 Cherwell API

See the contribution guide for more information regarding contributing to this project

To use the Cherwell 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 "Cherwell.Api" - install the latest version

Example code (C# 10.0):

using Cherwell.Api;
using System;
using System.Threading.Tasks;

namespace My.Project
{
	public static class Program
	{
		public static async Task Main()
		{
			using var cherwellClient = new CherwellClient(new CherwellClientOptions
			{
				BaseAddress = "xxxxxxx",
				Username = "0123456789abcdef0123456789abcdef01234567",
				Password = "0123456789abcdef0123456789abcdef01234567",
				ClientId = "0123456789abcdef0123456789abcdef01234567"
			});

			var views = await cherwellClient
				.Core
				.GetViewsAsync()
				;
		}
	}
}

API Documentation

The Cherwell API documentation can be found here:

About

No description, website, or topics provided.

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages