Billbee.Net 2.0.0

dotnet add package Billbee.Net --version 2.0.0
                    
NuGet\Install-Package Billbee.Net -Version 2.0.0
                    
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="Billbee.Net" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Billbee.Net" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Billbee.Net" />
                    
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 Billbee.Net --version 2.0.0
                    
#r "nuget: Billbee.Net, 2.0.0"
                    
#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 Billbee.Net@2.0.0
                    
#: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=Billbee.Net&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Billbee.Net&version=2.0.0
                    
Install as a Cake Tool

Billbee.Net is a modern and asynchronous .Net client library based on Flurl and Polly.

GOAL

.NET8 client support for Billbee API

CONFIGURE / How To Use

Get it on NuGet:

PM> Install-Package Billbee.Net

For use in your .Net projects just add a reference to your startUp class and good to go.

Add Billbee URL, ApiKey, Username, and Password to your configuration

"Billbee": { "Url": "https://app.billbee.io/api/v1", "ApiKey": "YOUR_API_KEY", "Username": "YOUR_USERNAME", "Password": "YOUR_PASSWORD", "Logging": "false" }

register service in startUp or program file by adding services.RegisterBillbee(ICONFIGURATION)

License

This project is licensed under the MIT license. See the LICENSE file for more info.

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
2.0.0 96 5/18/2026
1.0.7 312 7/9/2024
1.0.6 206 7/9/2024
1.0.5 213 7/9/2024
1.0.4 195 7/9/2024
1.0.3 224 7/9/2024
1.0.2 215 7/4/2024
1.0.1 211 7/3/2024
0.4.4 483 1/19/2024
0.4.3 497 12/28/2023
0.4.2 457 12/26/2023
0.4.1 440 12/26/2023
0.3.0 468 12/22/2023
0.2.9 421 12/22/2023
0.2.8 446 12/22/2023
0.2.7 1,085 1/18/2022
0.2.6 1,107 1/17/2022
0.2.5 1,039 1/17/2022
0.2.4 1,019 1/17/2022
0.2.3 1,003 1/14/2022
Loading failed

2.0.0 (BREAKING CHANGES):
- Address: Id renamed to BillbeeId; Line3 and Comment properties removed
- Order: IsCanceled and RestfulPath removed; ArchivedAt, RestoredAt, History added
- DeletedImages: List<int> changed to List<long>
- Product: ExportDescription marked [Obsolete], use ExportDescriptionMultiLanguage; new properties BillOfMaterial, Condition, Width/Length/HeightCm, IsLowStock
- PaymentTypeEnum: values 126-138 added
- DI lifetime changed from Scoped to Singleton
- HTTP 429/5xx handling via typed exceptions (RateLimitException, ServerErrorException)
- DeleteAsync no longer requires a generic type parameter