Soenneker.DNSimple.OpenApiClient 4.0.146

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

A generated .NET client for DNSimple's accounts, domains, DNS records, registrar, contacts, certificates, services, templates, TLDs, and identity APIs.

Installation

dotnet add package Soenneker.DNSimple.OpenApiClient

Create the client directly

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

using var httpClient = new HttpClient();
httpClient.DefaultRequestHeaders.Authorization =
    new AuthenticationHeaderValue("Bearer", apiToken);

var authentication = new AnonymousAuthenticationProvider();
using var adapter = new HttpClientRequestAdapter(authentication, httpClient: httpClient);
var client = new DNSimpleOpenApiClient(adapter);

var identity = await client.Whoami.GetAsync(cancellationToken: cancellationToken);

The generated client defaults to https://api.dnsimple.com/v2. Set adapter.BaseUrl to https://api.sandbox.dnsimple.com/v2 before constructing the client when using sandbox credentials.

Account-scoped endpoints are selected with the root indexer, for example client[accountId].Domains. Request and response types live in Soenneker.DNSimple.OpenApiClient.Models, and generated endpoint methods accept request-configuration callbacks and cancellation tokens.

For managed transport reuse and configuration, use Soenneker.DNSimple.OpenApiClientUtil. Higher-level packages such as Soenneker.DNSimple.Domains, Soenneker.DNSimple.Registrar, and Soenneker.DNSimple.Contacts wrap common operations.

This repository contains generated source. Keep application-specific behavior in wrapper services or separate partial-class files because regeneration can replace generated files.

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.DNSimple.OpenApiClient:

Package Downloads
Soenneker.DNSimple.OpenApiClientUtil

Provides a cached DNSimple OpenAPI client backed by the configured DNSimple HttpClient.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.146 199 9/24/2026
4.0.145 199 9/22/2026
4.0.144 154 9/18/2026
4.0.143 264 9/17/2026
4.0.142 522 9/15/2026
4.0.141 996 9/12/2026
4.0.140 770 9/8/2026
4.0.139 809 9/4/2026
4.0.138 105 9/4/2026
4.0.137 677 9/3/2026
4.0.136 137 9/3/2026
4.0.135 99 9/3/2026
4.0.134 112 9/2/2026
4.0.133 97 9/2/2026
4.0.132 654 8/31/2026
4.0.131 1,114 8/15/2026
4.0.130 616 8/14/2026
4.0.129 575 8/7/2026
4.0.128 482 8/1/2026
4.0.127 369 7/28/2026
Loading failed