Billbee.Net
2.0.0
dotnet add package Billbee.Net --version 2.0.0
NuGet\Install-Package Billbee.Net -Version 2.0.0
<PackageReference Include="Billbee.Net" Version="2.0.0" />
<PackageVersion Include="Billbee.Net" Version="2.0.0" />
<PackageReference Include="Billbee.Net" />
paket add Billbee.Net --version 2.0.0
#r "nuget: Billbee.Net, 2.0.0"
#:package Billbee.Net@2.0.0
#addin nuget:?package=Billbee.Net&version=2.0.0
#tool nuget:?package=Billbee.Net&version=2.0.0
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 | Versions 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. |
-
net10.0
- Flurl.Http (>= 4.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.8)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.8)
- Microsoft.Extensions.Http (>= 10.0.8)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.8)
- Microsoft.Extensions.Options (>= 10.0.8)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 10.0.8)
- Newtonsoft.Json (>= 13.0.4)
- Polly (>= 8.6.6)
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 |
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