Soenneker.Quo.OpenApiClientUtil 4.0.156

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

Provides a lazily initialized Quo client for contacts, calls, messages, conversations, phone numbers, users, and webhooks.

Installation

dotnet add package Soenneker.Quo.OpenApiClientUtil

Configuration

{
  "Quo": {
    "ApiKey": "your-api-key"
  }
}

Set Quo:ClientBaseUrl only when targeting a different Quo-compatible endpoint. The default is https://api.openphone.com/ because Quo continues to serve its API from the OpenPhone domain.

Usage

using Soenneker.Quo.OpenApiClientUtil.Abstract;
using Soenneker.Quo.OpenApiClientUtil.Registrars;

services.AddQuoOpenApiClientUtilAsSingleton();

public sealed class QuoService
{
    private readonly IQuoOpenApiClientUtil _quo;

    public QuoService(IQuoOpenApiClientUtil quo)
    {
        _quo = quo;
    }

    public async Task GetUsers(CancellationToken cancellationToken)
    {
        var client = await _quo.Get(cancellationToken);
        var users = await client.V1.Users.GetAsync(
            cancellationToken: cancellationToken);
    }
}

Use AddQuoOpenApiClientUtilAsScoped() when each scope should have its own lazily initialized API client. Both registrations reuse the singleton authenticated HTTP client provider.

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.160 24 9/5/2026
4.0.159 38 9/5/2026
4.0.158 38 9/5/2026
4.0.157 40 9/4/2026
4.0.156 34 9/4/2026
4.0.155 33 9/4/2026
4.0.154 36 9/4/2026
4.0.153 37 9/4/2026
4.0.152 43 9/4/2026
4.0.151 43 9/4/2026
4.0.150 37 9/4/2026
4.0.149 36 9/3/2026
4.0.148 41 9/3/2026
4.0.147 57 9/3/2026
4.0.146 70 9/1/2026
4.0.145 71 9/1/2026
4.0.144 84 8/31/2026
4.0.143 77 8/31/2026
4.0.142 73 8/31/2026
4.0.141 77 8/31/2026
Loading failed