Soenneker.Calendly.OpenApiClientUtil 4.0.199

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Calendly.OpenApiClientUtil --version 4.0.199
                    
NuGet\Install-Package Soenneker.Calendly.OpenApiClientUtil -Version 4.0.199
                    
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.Calendly.OpenApiClientUtil" Version="4.0.199" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Calendly.OpenApiClientUtil" Version="4.0.199" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Calendly.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.Calendly.OpenApiClientUtil --version 4.0.199
                    
#r "nuget: Soenneker.Calendly.OpenApiClientUtil, 4.0.199"
                    
#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.Calendly.OpenApiClientUtil@4.0.199
                    
#: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.Calendly.OpenApiClientUtil&version=4.0.199
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Calendly.OpenApiClientUtil&version=4.0.199
                    
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.Calendly.OpenApiClientUtil

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

Installation

dotnet add package Soenneker.Calendly.OpenApiClientUtil

Configuration

{
  "Calendly": {
    "ApiKey": "your-personal-access-token"
  }
}

The default authorization value is Bearer {token}. Calendly:ClientBaseUrl, Calendly:AuthHeaderName, and Calendly:AuthHeaderValueTemplate are available for compatible gateways or alternate credentials.

Registration and usage

using Soenneker.Calendly.OpenApiClient;
using Soenneker.Calendly.OpenApiClient.Models;
using Soenneker.Calendly.OpenApiClientUtil.Abstract;
using Soenneker.Calendly.OpenApiClientUtil.Registrars;

services.AddCalendlyOpenApiClientUtilAsScoped();

public sealed class CalendlyService(ICalendlyOpenApiClientUtil clientUtil)
{
    public async Task<GetCurrentUser200Response?> GetCurrentUser(CancellationToken cancellationToken)
    {
        CalendlyOpenApiClient client = await clientUtil.Get(cancellationToken);
        return await client.Users.Me.GetAsync(cancellationToken: cancellationToken);
    }
}

The scoped utility releases its own cached generated client with the consuming scope. Its registered HTTP provider is singleton and remains alive until application shutdown. Use singleton utility registration when one utility instance should be shared application-wide.

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.207 37 9/13/2026
4.0.206 36 9/13/2026
4.0.205 39 9/13/2026
4.0.204 44 9/12/2026
4.0.203 44 9/12/2026
4.0.202 47 9/12/2026
4.0.201 44 9/12/2026
4.0.200 46 9/12/2026
4.0.199 95 9/9/2026
4.0.198 83 9/9/2026
4.0.197 77 9/8/2026
4.0.196 79 9/8/2026
4.0.195 91 9/8/2026
4.0.194 94 9/8/2026
4.0.193 106 9/7/2026
4.0.192 111 9/5/2026
4.0.191 105 9/5/2026
4.0.190 98 9/4/2026
4.0.189 92 9/4/2026
4.0.188 90 9/4/2026
Loading failed