Soenneker.Telnyx.Client 4.0.577

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

Provides a cached HttpClient configured with Telnyx's REST API base address, bearer-token authentication, and optional request/response logging.

Installation

dotnet add package Soenneker.Telnyx.Client

Configuration

{
  "Telnyx": {
    "Token": "KEY...",
    "RequestResponseLogging": false
  }
}

Usage

using Soenneker.Telnyx.Client.Abstract;
using Soenneker.Telnyx.Client.Registrars;

services.AddTelnyxHttpClientAsSingleton();

HttpClient client = await telnyxHttpClient.Get(cancellationToken);
HttpResponseMessage response = await client.GetAsync(
    "messaging_profiles",
    cancellationToken);

response.EnsureSuccessStatusCode();

The base address is https://api.telnyx.com/v2/, so relative request paths should not start with /. The provider owns its cached client; callers should not dispose the value returned by Get independently.

When RequestResponseLogging is enabled, the Authorization header is redacted, but request and response bodies may still contain phone numbers, message content, or other sensitive data. Enable it only where that output is appropriately protected.

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 (2)

Showing the top 2 NuGet packages that depend on Soenneker.Telnyx.Client:

Package Downloads
Soenneker.Telnyx.ClientUtil

Provide a reusable generated client for Telnyx's REST API.

Soenneker.Telnyx.PublicKeys

Retrieves and caches the Ed25519 public key used to verify Telnyx webhook signatures.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.603 0 9/16/2026
4.0.602 0 9/16/2026
4.0.600 0 9/15/2026
4.0.598 89 9/13/2026
4.0.597 62 9/13/2026
4.0.596 64 9/13/2026
4.0.595 47 9/13/2026
4.0.594 51 9/13/2026
4.0.592 81 9/13/2026
4.0.591 51 9/13/2026
4.0.590 62 9/12/2026
4.0.584 179 9/9/2026
4.0.583 103 9/9/2026
4.0.582 119 9/9/2026
4.0.580 71 9/9/2026
4.0.579 125 9/9/2026
4.0.578 135 9/9/2026
4.0.577 94 9/8/2026
4.0.576 154 9/8/2026
4.0.575 197 9/8/2026
Loading failed

Updated Soenneker.HttpClients.LoggingHandler to 4.0.228