Soenneker.HighLevel.OpenApiClient 4.0.122

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

alternate text is missing from this package README image Soenneker.HighLevel.OpenApiClient

Call HighLevel endpoints through a Kiota-generated client with typed request builders and models.

Install

dotnet add package Soenneker.HighLevel.OpenApiClient

Create a client

using System.Net.Http.Headers;
using Microsoft.Kiota.Abstractions.Authentication;
using Microsoft.Kiota.Http.HttpClientLibrary;
using Soenneker.HighLevel.OpenApiClient;

var httpClient = new HttpClient
{
    BaseAddress = new Uri("https://services.leadconnectorhq.com/")
};
httpClient.DefaultRequestHeaders.Authorization =
    new AuthenticationHeaderValue("Bearer", apiKey);
httpClient.DefaultRequestHeaders.Add("Version", "2021-07-28");

var adapter = new HttpClientRequestAdapter(
    new AnonymousAuthenticationProvider(),
    httpClient: httpClient);

var client = new HighLevelOpenApiClient(adapter);

The HttpClient supplies authentication and the HighLevel API version, so the Kiota adapter uses anonymous authentication. Reuse the transport rather than constructing one per request, and dispose it when its owning application component shuts down.

For application registration, per-API-key client reuse, and coordinated transport ownership, use Soenneker.HighLevel.ClientUtil instead of constructing the generated client directly.

Call an endpoint

using Soenneker.HighLevel.OpenApiClient.Models;

ContactsByIdSuccessfulResponseDto? response = await client.Contacts[contactId]
    .GetAsync(cancellationToken: cancellationToken);

The generated surface follows the OpenAPI document: top-level properties such as Contacts, Calendars, Conversations, Locations, and Opportunities expose request builders, while types under Soenneker.HighLevel.OpenApiClient.Models represent request and response bodies.

HTTP failures are surfaced through Kiota exceptions. Nullable results indicate that an endpoint returned no response body.

This repository contains generated code. Put reusable helpers and behavior changes in a separate package so regeneration does not overwrite 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 (1)

Showing the top 1 NuGet packages that depend on Soenneker.HighLevel.OpenApiClient:

Package Downloads
Soenneker.HighLevel.ClientUtil

Provides cached HighLevel generated clients for one or more API keys

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.122 34 8/31/2026
4.0.121 35 8/30/2026
4.0.120 662 8/15/2026
4.0.119 95 8/15/2026
4.0.118 206 8/13/2026
4.0.117 414 8/1/2026
4.0.116 360 7/27/2026
4.0.115 182 7/22/2026
4.0.114 279 7/16/2026
4.0.113 153 7/16/2026
4.0.112 587 7/10/2026
4.0.111 160 7/9/2026
4.0.110 153 7/7/2026
4.0.109 508 6/18/2026
4.0.108 666 6/5/2026
4.0.107 267 5/27/2026
4.0.106 216 5/17/2026
4.0.105 146 5/15/2026
4.0.104 155 5/13/2026
4.0.103 347 5/8/2026
Loading failed

Improve generated HighLevel client documentation