Soenneker.CalCom.OpenApiClientUtil 4.0.155

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

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Soenneker.CalCom.OpenApiClientUtil

Provides a lazily created Cal.com Kiota client backed by the configured cached HttpClient.

Installation

dotnet add package Soenneker.CalCom.OpenApiClientUtil

Configuration

{
  "CalCom": {
    "ApiKey": "your-api-key"
  }
}

CalCom:ApiKey is required. The underlying HTTP provider adds it as Cal.com's required apiKey query parameter. CalCom:ClientBaseUrl can override the default API base URL for a compatible proxy or test server.

Registration and usage

using Soenneker.CalCom.OpenApiClient;
using Soenneker.CalCom.OpenApiClientUtil.Abstract;
using Soenneker.CalCom.OpenApiClientUtil.Registrars;

services.AddCalComOpenApiClientUtilAsScoped();

public sealed class CalComService(ICalComOpenApiClientUtil clientUtil)
{
    public async Task<Stream?> GetUsers(CancellationToken cancellationToken)
    {
        CalComOpenApiClient client = await clientUtil.Get(cancellationToken);
        return await client.Users.GetAsync(cancellationToken: cancellationToken);
    }
}

Scoped registration is useful when the lightweight utility should be released with the consuming scope while its registered singleton HTTP provider remains available. Singleton registration is also available when one utility instance should be shared application-wide.

Generated operations may return Stream when the source OpenAPI document does not define a response schema. Dispose returned streams after reading them.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
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
4.0.155 40 9/13/2026
4.0.154 43 9/13/2026
4.0.153 34 9/13/2026
4.0.152 45 9/13/2026
4.0.151 49 9/12/2026
4.0.150 46 9/12/2026
4.0.149 41 9/12/2026
4.0.148 47 9/12/2026
4.0.147 46 9/9/2026
4.0.146 47 9/9/2026
4.0.145 64 9/8/2026
4.0.144 66 9/8/2026
4.0.143 85 9/8/2026
4.0.142 86 9/8/2026
4.0.141 100 9/7/2026
4.0.140 87 9/7/2026
4.0.139 95 9/5/2026
4.0.138 95 9/5/2026
4.0.137 96 9/5/2026
4.0.136 88 9/4/2026
Loading failed