Soenneker.Quo.OpenApiClientUtil 4.0.168

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.168
                    
NuGet\Install-Package Soenneker.Quo.OpenApiClientUtil -Version 4.0.168
                    
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.168" />
                    
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.168" />
                    
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.168
                    
#r "nuget: Soenneker.Quo.OpenApiClientUtil, 4.0.168"
                    
#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.168
                    
#: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.168
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Quo.OpenApiClientUtil&version=4.0.168
                    
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.169 58 9/9/2026
4.0.168 59 9/9/2026
4.0.167 73 9/8/2026
4.0.166 66 9/8/2026
4.0.165 73 9/8/2026
4.0.164 79 9/8/2026
4.0.163 72 9/8/2026
4.0.162 82 9/7/2026
4.0.161 85 9/7/2026
4.0.160 95 9/5/2026
4.0.159 85 9/5/2026
4.0.158 83 9/5/2026
4.0.157 89 9/4/2026
4.0.156 83 9/4/2026
4.0.155 80 9/4/2026
4.0.154 84 9/4/2026
4.0.153 82 9/4/2026
4.0.152 91 9/4/2026
4.0.151 87 9/4/2026
4.0.150 84 9/4/2026
Loading failed