Autogenerated OpenAPI client
Qase API tokens
dotnet add package Qase.Clientusing Qase.Client.Api;
using Qase.Client.Client;
Configuration config = new() { BasePath = "https://api.qase.io/v1" };
config.ApiKey.Add("Token", "abc");
CasesApi api = new(config);
var response = api.GetCases("DEMO");
foreach (var c in response.Result.Entities)
{
Console.WriteLine($"{c.Id}: {c.Title} - {c.Description}");
}Output:
1: Authorization - Registered users can log in to the application using email and password.
2: Sign up - Users can create a new account in TMS Qase.io.
3: Password restore -
4: Sign up with invite link - User signup using invite link.
5: Create new project - This case checks new project creation process
6: Edit existing project -
7: Delete project -
8: Invite new user into workspace -
9: Deactivate user -
10: Activate user -