Qase.ApiClient.V1 1.1.27

dotnet add package Qase.ApiClient.V1 --version 1.1.27
                    
NuGet\Install-Package Qase.ApiClient.V1 -Version 1.1.27
                    
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="Qase.ApiClient.V1" Version="1.1.27" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Qase.ApiClient.V1" Version="1.1.27" />
                    
Directory.Packages.props
<PackageReference Include="Qase.ApiClient.V1" />
                    
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 Qase.ApiClient.V1 --version 1.1.27
                    
#r "nuget: Qase.ApiClient.V1, 1.1.27"
                    
#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 Qase.ApiClient.V1@1.1.27
                    
#: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=Qase.ApiClient.V1&version=1.1.27
                    
Install as a Cake Addin
#tool nuget:?package=Qase.ApiClient.V1&version=1.1.27
                    
Install as a Cake Tool

Qase TMS C# API V1 Client

Installation

NuGet CLI

Install-Package Qase.ApiClient.V1

.NET CLI

dotnet package add Qase.ApiClient.V1

Usage

The client uses API tokens to authenticate requests. You can view and manage your API keys on the API tokens page.

using System;
using System.Threading.Tasks;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Qase.ApiClient.V1.Api;
using Qase.ApiClient.V1.Client;
using Qase.ApiClient.V1.Extensions;

namespace YourProject
{
    public class Program
    {
        public static async Task Main(string[] args)
        {
            var host = CreateHostBuilder(args).Build();
            var api = host.Services.GetRequiredService<ICasesApi>();
            var apiResponse = await api.GetCasesAsync("DEVX", limit: 10);
            if (apiResponse.StatusCode == System.Net.HttpStatusCode.OK)
            {
                foreach (var item in apiResponse.Ok().Result.Entities)
                {
                    Console.WriteLine($"Case ID: {item.Id}, Title: {item.Title}");
                }
            }
            else
            {
                Console.WriteLine($"Error: {apiResponse.StatusCode}");
            }
        }

        public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args)
          .ConfigureServices((context, services) =>
          {
              services.AddApi(options =>
              {
                  // the type of token here depends on the api security specifications
                  ApiKeyToken token = new("<your token>", ClientUtils.ApiKeyHeader.Token, "");
                  options.AddTokens(token);

                  // optionally choose the method the tokens will be provided with, default is RateLimitProvider
                  options.UseProvider<RateLimitProvider<ApiKeyToken>, ApiKeyToken>();

                  options.AddApiHttpClients();
              });
          });
    }
}

Additional Documentation

For further information on the API endpoints and parameters, please refer to the Qase API documentation.

Requirements

  • .NET Core >=2.0
  • .NET Framework >=4.6.1
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 (1)

Showing the top 1 NuGet packages that depend on Qase.ApiClient.V1:

Package Downloads
Qase.Csharp.Commons

Common classes for Qase TMS C# reporters

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.27 163 9/2/2026
1.1.26 250 8/27/2026
1.1.25 251 8/25/2026
1.1.24 302 8/17/2026
1.1.23 283 8/11/2026
1.1.22 545 7/7/2026
1.1.21 471 6/29/2026
1.1.20 494 6/25/2026
1.1.19 627 6/10/2026
1.1.18 4,538 4/23/2026
1.1.17 341 4/21/2026
1.1.16 562 4/14/2026
1.1.15 332 4/7/2026
1.1.14 321 4/7/2026
1.1.13 324 4/2/2026
1.1.12 278 3/26/2026
1.1.11 473 3/25/2026
1.1.10 279 3/25/2026
1.1.9 372 3/18/2026
1.1.8 1,607 3/11/2026
Loading failed