Cherwell.Api 1.0.48

dotnet add package Cherwell.Api --version 1.0.48
                    
NuGet\Install-Package Cherwell.Api -Version 1.0.48
                    
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="Cherwell.Api" Version="1.0.48" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Cherwell.Api" Version="1.0.48" />
                    
Directory.Packages.props
<PackageReference Include="Cherwell.Api" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Cherwell.Api --version 1.0.48
                    
#r "nuget: Cherwell.Api, 1.0.48"
                    
#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.
#:package Cherwell.Api@1.0.48
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Cherwell.Api&version=1.0.48
                    
Install as a Cake Addin
#tool nuget:?package=Cherwell.Api&version=1.0.48
                    
Install as a Cake Tool

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:

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.0.48 1,093 1/15/2025
1.0.47 139 1/7/2025
1.0.46 314 11/13/2024
1.0.45 570 7/22/2024
1.0.44 167 7/16/2024
1.0.42 152 7/16/2024
1.0.31 405 4/25/2024
1.0.30 161 4/18/2024
1.0.29 159 4/18/2024
1.0.25 369 9/23/2023
1.0.23 169 9/23/2023
1.0.22 176 9/23/2023
1.0.21 181 9/23/2023
1.0.14 525 5/17/2023
1.0.13 251 4/28/2023
1.0.10 408 2/15/2023
1.0.9 340 2/13/2023
1.0.8 467 11/30/2022
1.0.7 400 11/22/2022
1.0.3 401 11/20/2022
1.0.2 410 11/20/2022
0.2.4 476 11/3/2022
0.2.2 503 9/1/2022
0.2.1 486 9/1/2022
0.1.29-alpha 228 6/30/2022
0.1.12-alpha 253 6/28/2022
0.1.10-alpha 242 6/28/2022
0.1.3-alpha 213 6/24/2022
0.1.0-alpha 239 6/24/2022

Fixed an issue where when doing a search / request, the error message (when you do not have rights to query for a business object) is now propagated properly.