Soenneker.Zoho.OpenApiClientUtil 4.0.130

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

Provides cached ZohoOpenApiClient instances for access-token and data-center combinations.

Installation

dotnet add package Soenneker.Zoho.OpenApiClientUtil

Configuration

{
  "Zoho": {
    "AccessToken": "your-oauth-access-token",
    "ClientBaseUrl": "https://www.zohoapis.com/crm/v8/"
  }
}

The US CRM v8 base URL is used when ClientBaseUrl is omitted. Use the api_domain returned by Zoho's token endpoint for other data centers. Zoho:ApiKey remains supported as a legacy alias for Zoho:AccessToken.

Registration

services.AddZohoOpenApiClientUtilAsSingleton();

Scoped registration is also available:

services.AddZohoOpenApiClientUtilAsScoped();

The scoped provider borrows the singleton HTTP transport. Disposing it releases its generated clients without removing the shared transport.

Usage

public sealed class ZohoUserReader
{
    private readonly IZohoOpenApiClientUtil _zoho;

    public ZohoUserReader(IZohoOpenApiClientUtil zoho)
    {
        _zoho = zoho;
    }

    public async Task PrintUsers(CancellationToken cancellationToken)
    {
        ZohoOpenApiClient client = await _zoho.Get(cancellationToken);
        var response = await client.Users.GetAsync(cancellationToken: cancellationToken);

        foreach (var user in response?.Users ?? [])
            Console.WriteLine($"{user.FullName} ({user.Email})");
    }
}

Pass connection values explicitly when serving multiple Zoho tenants or data centers:

ZohoOpenApiClient tenantClient = await zohoClientUtil.Get(
    tenantAccessToken,
    "https://www.zohoapis.eu/crm/v8/",
    cancellationToken);

The provider caches one generated client per access-token/base-URL pair. It does not obtain or refresh OAuth tokens.

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.135 0 9/9/2026
4.0.134 0 9/9/2026
4.0.133 28 9/9/2026
4.0.132 37 9/8/2026
4.0.131 44 9/8/2026
4.0.130 47 9/8/2026
4.0.129 50 9/8/2026
4.0.128 50 9/8/2026
4.0.127 68 9/7/2026
4.0.126 67 9/7/2026
4.0.125 55 9/7/2026
4.0.124 83 9/6/2026
4.0.123 58 9/6/2026
4.0.122 57 9/5/2026
4.0.121 68 9/5/2026
4.0.120 62 9/4/2026
4.0.119 58 9/4/2026
4.0.118 53 9/4/2026
4.0.117 57 9/4/2026
4.0.116 57 9/4/2026
Loading failed