Soenneker.Quo.OpenApiClientUtil 4.0.160

Prefix Reserved
dotnet add package Soenneker.Quo.OpenApiClientUtil --version 4.0.160
                    
NuGet\Install-Package Soenneker.Quo.OpenApiClientUtil -Version 4.0.160
                    
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.160" />
                    
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.160" />
                    
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.160
                    
#r "nuget: Soenneker.Quo.OpenApiClientUtil, 4.0.160"
                    
#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.160
                    
#: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.160
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Quo.OpenApiClientUtil&version=4.0.160
                    
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 44 9/5/2026
4.0.159 41 9/5/2026
4.0.158 42 9/5/2026
4.0.157 42 9/4/2026
4.0.156 38 9/4/2026
4.0.155 37 9/4/2026
4.0.154 39 9/4/2026
4.0.153 40 9/4/2026
4.0.152 47 9/4/2026
4.0.151 46 9/4/2026
4.0.150 40 9/4/2026
4.0.149 38 9/3/2026
4.0.148 45 9/3/2026
4.0.147 60 9/3/2026
4.0.146 71 9/1/2026
4.0.145 72 9/1/2026
4.0.144 86 8/31/2026
4.0.143 79 8/31/2026
4.0.142 74 8/31/2026
4.0.141 79 8/31/2026
Loading failed