Soenneker.Calendly.OpenApiClientUtil 4.0.174

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.174
                    
NuGet\Install-Package Soenneker.Calendly.OpenApiClientUtil -Version 4.0.174
                    
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.174" />
                    
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.174" />
                    
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.174
                    
#r "nuget: Soenneker.Calendly.OpenApiClientUtil, 4.0.174"
                    
#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.174
                    
#: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.174
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Calendly.OpenApiClientUtil&version=4.0.174
                    
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.179 38 9/1/2026
4.0.178 32 9/1/2026
4.0.177 44 8/31/2026
4.0.176 41 8/31/2026
4.0.175 49 8/31/2026
4.0.174 45 8/31/2026
4.0.173 48 8/31/2026
4.0.172 85 8/30/2026
4.0.171 46 8/30/2026
4.0.170 56 8/30/2026
4.0.169 47 8/30/2026
4.0.168 77 8/27/2026
4.0.167 82 8/26/2026
4.0.166 79 8/26/2026
4.0.165 80 8/26/2026
4.0.164 85 8/26/2026
4.0.163 79 8/26/2026
4.0.162 94 8/25/2026
4.0.161 92 8/22/2026
4.0.160 86 8/22/2026
Loading failed