HubSpot.Api 0.1.9-alpha

This is a prerelease version of HubSpot.Api.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package HubSpot.Api --version 0.1.9-alpha
NuGet\Install-Package HubSpot.Api -Version 0.1.9-alpha
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="HubSpot.Api" Version="0.1.9-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HubSpot.Api --version 0.1.9-alpha
#r "nuget: HubSpot.Api, 0.1.9-alpha"
#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.
// Install HubSpot.Api as a Cake Addin
#addin nuget:?package=HubSpot.Api&version=0.1.9-alpha&prerelease

// Install HubSpot.Api as a Cake Tool
#tool nuget:?package=HubSpot.Api&version=0.1.9-alpha&prerelease

HubSpot.Api

The HubSpot REST API nuget package, authored by Panoramic Data Limited.

Nuget Nuget License: MIT Codacy Badge

If you want some LogicMonitor software developed, come find us at: https://www.panoramicdata.com/ !

A simple example:

using HubSpot.Api;

[...]

public static async Task GetAllDevices(ILogger logger, CancellationToken cancellationToken)
{
	using var hubSpotClient = new HubSpotClient(
		new HubSpotClientOptions
		{
			Key = "accessKey",
			Logger = logger
		}
	);

	var deals = await hubSpotClient
		.Deals
		.GetAllAsync(cancellationToken)
		.ConfigureAwait(false);

	Console.WriteLine($"Deal Count: {deals.Count}");
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.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
0.1.24-alpha 289 12/9/2023
0.1.22-alpha 109 11/27/2023
0.1.21-alpha 58 11/27/2023
0.1.20-alpha 62 11/26/2023
0.1.9-alpha 57 11/26/2023

Initial release