Soenneker.Bandwidth.OpenApiClientUtil 4.0.176

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

Creates and caches an authenticated BandwidthOpenApiClient for dependency-injected applications.

Installation

dotnet add package Soenneker.Bandwidth.OpenApiClientUtil

Configuration

{
  "Bandwidth": {
    "ApiKey": "your-token",
    "ClientBaseUrl": "https://api.bandwidth.com/api/v2/",
    "AuthHeaderName": "Authorization",
    "AuthHeaderValueTemplate": "Bearer {token}"
  }
}

Bandwidth:ApiKey is required; the other values shown are defaults. Set the header template to the authentication scheme required by the Bandwidth service you call. For an already Base64-encoded Basic credential, use Basic {token}.

This utility configures one base URL and one authentication header. Bandwidth endpoints requiring another host, a different credential set, or multiple authentication headers should use a separately configured generated client.

Registration

using Soenneker.Bandwidth.OpenApiClientUtil.Registrars;

services.AddBandwidthOpenApiClientUtilAsScoped();

The scoped utility uses a singleton HTTP-client provider. Ending a scope disposes that utility's generated client state but leaves the singleton provider and its HttpClient alive. Use AddBandwidthOpenApiClientUtilAsSingleton() when the generated client should also be shared application-wide.

Usage

using Soenneker.Bandwidth.OpenApiClient;
using Soenneker.Bandwidth.OpenApiClient.Models;
using Soenneker.Bandwidth.OpenApiClientUtil.Abstract;

public sealed class BandwidthMessageService
{
    private readonly IBandwidthOpenApiClientUtil _clientUtil;

    public BandwidthMessageService(IBandwidthOpenApiClientUtil clientUtil)
    {
        _clientUtil = clientUtil;
    }

    public async Task<MessagesList?> GetMessages(string accountId, CancellationToken cancellationToken = default)
    {
        BandwidthOpenApiClient client = await _clientUtil.Get(cancellationToken);
        return await client.Messaging.Users[accountId].Messages.GetAsync(cancellationToken: cancellationToken);
    }
}

Get() lazily creates one generated client per utility instance and returns it afterward. Authentication and base-address configuration are captured during initial creation. Credentials are added only to HTTPS requests and are pinned to the first request host.

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.178 0 9/8/2026
4.0.177 0 9/7/2026
4.0.176 25 9/7/2026
4.0.175 48 9/5/2026
4.0.174 56 9/5/2026
4.0.173 44 9/4/2026
4.0.172 45 9/4/2026
4.0.171 40 9/4/2026
4.0.170 46 9/4/2026
4.0.169 42 9/4/2026
4.0.168 52 9/4/2026
4.0.167 45 9/4/2026
4.0.166 35 9/4/2026
4.0.165 50 9/3/2026
4.0.164 50 9/3/2026
4.0.163 60 9/3/2026
4.0.162 88 9/1/2026
4.0.161 78 9/1/2026
4.0.160 82 8/31/2026
4.0.159 84 8/31/2026
Loading failed