RechargeSharp 4.4.4-beta.1

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

RechargeSharp, a C# library for RechargePayments

Get it here https://www.nuget.org/packages/RechargeSharp/

Built to work with the api documented at https://developer.rechargepayments.com/

Please feel free to submit issues and pull requests on github

Quickstart

Dependency injection

If you set up your appsettings.json like this:

{  
    "RechargeConfiguration": {
    "ApiKey": [
      "1",
      "2",
      "3",
      "4"
    ],
    "Url": "https://api.rechargeapps.com/"
  }
}

Add RechargeSharp to dependency injection. After that the services will be constructor injected.

// this example shows how you can get a list of api keys from configuration that the services will swap between automatically when encountering throttling.
services.AddRechargeSharp(opts =>
                {
                    opts.ApiKeyArray = _configuration.GetSection("RechargeConfiguration:ApiKey").GetChildren().Select(x => x.Value).ToArray();
                    opts.WebhookApiKey = _configuration["RechargeConfiguration:ApiKey:0"];
                })
// if you only have 1 api key you wish to work with you can do the following.
services.AddRechargeSharp(opts => 
                {
                    opts.ApiKeyArray = new[] { "apikey" });
                    opts.WebhookApiKey = "apikey";
                }

Subscriptions

public class SubscriptionTestClass {
    private readonly SubscriptionService _subscriptionService;

    // constructor inject the subscription service to start working with subscriptions.
    public SubscriptionTestClass(SubscriptionService subscriptionService){
        _subscriptionService = subscriptionService;
    }

    public async Task DoStuff(){
        // get all subscriptions with status ACTIVE and created after two months ago.
        var subscriptions = await subscriptionService.GetAllSubscriptionsWithParamsAsync(status: "ACTIVE", createdAtMin: DateTime.Today.AddMonths(-2));

        // iterate results and print subscription Id.
        foreach (var subscription in subscriptions)
        {
            Console.WriteLine(subscription.Id);
        }
    }
}

Customers

public class CustomerTestClass {
    private readonly CustomerService _customerService;

    // constructor inject the customer service to start working with customers.
    public CustomerTestClass(CustomerService customerService){
        _customerService = customerService;
    }

    public async Task DoStuff(){
        // get all customers created in the last two days.
        var customers = await _customerService.GetAllCustomersWithParamsAsync(createdAtMin: DateTime.Now.AddDays(-2));

        // iterate results and print whether the customer has a valid payment method.
        foreach (var customer in customers)
        {
            Console.WriteLine(customer.HasValidPaymentMethod);
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
12.2.4 810 10/8/2024
12.2.3 2,387 10/30/2023
12.2.2 2,182 11/8/2022
12.2.1 686 9/13/2022
12.2.0 928 9/13/2022
12.1.1 515 9/5/2022
12.1.1-alpha.2 314 7/27/2022
12.1.1-alpha.1 145 7/27/2022
12.1.0-alpha.3 139 7/27/2022
12.0.0-alpha.3 676 6/2/2022
12.0.0-alpha.2 138 6/2/2022
12.0.0-alpha.1 139 6/2/2022
11.2.0-alpha.2 138 5/24/2022
11.2.0-alpha.1 159 4/26/2022
11.1.0-beta.5 2,755 3/23/2022
11.1.0-beta.4 146 3/2/2022
11.1.0-beta.3 970 2/24/2022
11.1.0-beta.1 141 2/17/2022
11.0.1 764 2/9/2022
11.0.1-alpha.1 149 2/9/2022
11.0.0 505 2/7/2022
11.0.0-alpha.7 419 2/1/2022
11.0.0-alpha.6 163 1/10/2022
11.0.0-alpha.4 1,885 12/14/2021
11.0.0-alpha.3 175 12/12/2021
11.0.0-alpha.2 176 12/10/2021
10.0.0 570 12/8/2021
10.0.0-alpha.3 646 11/30/2021
10.0.0-alpha.2 434 11/23/2021
9.0.0 1,240 11/9/2021
9.0.0-alpha.2 540 10/8/2021
9.0.0-alpha.1 295 10/7/2021
8.1.0-alpha.3 397 10/1/2021
8.1.0-alpha.2 239 9/28/2021
8.1.0-alpha.1 175 9/27/2021
8.0.1 457 9/23/2021
7.0.0 547 9/8/2021
7.0.0-alpha.4 493 8/4/2021
7.0.0-alpha.3 213 8/3/2021
7.0.0-alpha.2 176 8/2/2021
7.0.0-alpha.1 198 8/2/2021
6.0.1 558 7/13/2021
6.0.0 480 7/12/2021
5.1.0 485 7/5/2021
5.0.0 798 6/9/2021
5.0.0-alpha.1 191 6/9/2021
4.6.0 746 5/20/2021
4.6.0-beta.2 216 5/13/2021
4.6.0-beta.1 201 5/13/2021
4.5.0 445 5/11/2021
4.5.0-beta.8 183 5/11/2021
4.5.0-beta.7 210 4/27/2021
4.5.0-beta.5 171 4/27/2021
4.5.0-beta.4 186 4/27/2021
4.5.0-beta.3 219 4/23/2021
4.5.0-beta.2 198 4/22/2021
4.5.0-beta.1 194 4/21/2021
4.4.6 611 4/12/2021
4.4.6-beta.1 192 4/12/2021
4.4.4 451 4/9/2021
4.4.4-beta.1 190 4/8/2021
4.4.3 519 4/5/2021
4.4.2 549 3/26/2021
4.4.1 645 3/14/2021
4.4.0 836 2/9/2021
4.3.2 433 1/27/2021
4.3.1 400 1/27/2021
4.3.0 483 1/20/2021
4.2.0 437 1/13/2021
4.1.4 448 12/29/2020
4.1.3 436 12/29/2020
4.1.2 515 12/21/2020
4.1.1 1,071 5/29/2020
4.1.0 553 5/29/2020
4.1.0-beta.1 298 5/27/2020
4.0.3-beta.2 350 5/11/2020
4.0.3-beta.1 306 5/11/2020
4.0.2 628 4/9/2020
4.0.1 637 3/25/2020
4.0.0 532 3/25/2020
4.0.0-beta.2 287 3/24/2020
4.0.0-beta.1 292 3/24/2020
3.2.8 565 3/23/2020
3.2.7 570 3/19/2020
3.2.6 574 3/9/2020
3.2.5 578 3/5/2020
3.2.4 563 3/4/2020
3.2.3 599 3/4/2020
3.2.2 548 3/4/2020
3.2.1 555 3/4/2020
3.2.0 614 3/4/2020
3.1.0 565 3/4/2020
3.0.10 575 2/27/2020
3.0.9 513 2/24/2020
3.0.7 535 2/24/2020
3.0.6 631 2/3/2020
3.0.5 568 2/3/2020
3.0.3 637 1/31/2020
3.0.1 579 1/13/2020
3.0.0 678 12/28/2019
2.2.9 633 12/13/2019
2.2.8 570 12/13/2019
2.2.7 684 11/21/2019
2.2.6 594 11/12/2019
2.2.5 568 11/8/2019
2.2.4 558 11/6/2019
2.2.3 567 11/6/2019
2.2.2 566 11/6/2019
2.2.1 568 11/6/2019
2.2.0 569 11/6/2019
2.1.1 549 11/1/2019
2.1.0 555 10/31/2019
2.0.1 596 10/29/2019
2.0.0 582 10/29/2019
1.5.0 571 10/25/2019
1.4.0 548 10/23/2019
1.3.0 570 10/16/2019
1.2.0 575 10/16/2019
1.1.4 556 10/9/2019
1.1.0 596 10/9/2019
1.0.0 582 9/18/2019
0.2.58 565 9/17/2019
0.2.57 613 9/16/2019
0.2.56 610 9/16/2019
0.2.55 815 9/16/2019
0.2.54 592 9/16/2019
0.2.53 607 9/16/2019
0.2.52 603 9/16/2019
0.2.51 583 9/13/2019
0.2.50 619 9/12/2019
0.2.49 599 9/12/2019
0.2.48 623 9/10/2019
0.2.47 597 9/10/2019
0.2.46 641 9/9/2019
0.2.43 614 9/7/2019
0.2.42 616 9/7/2019
0.2.37 608 9/7/2019
0.2.36 590 9/7/2019
0.2.35 604 9/7/2019
0.2.34 612 9/6/2019
0.2.33 581 9/5/2019
0.2.32 569 9/5/2019
0.2.31 583 9/5/2019
0.2.30 589 9/4/2019
0.2.25 602 9/4/2019
0.2.24 608 9/4/2019
0.2.23 566 9/3/2019
0.2.14 568 9/3/2019
0.2.13 590 9/3/2019
0.2.9 589 9/3/2019
0.2.8 565 9/3/2019
0.2.7 559 9/3/2019
0.2.6 584 9/3/2019
0.1.9 593 8/30/2019
0.1.8 617 8/15/2019
0.1.4 603 8/15/2019
0.1.3 565 8/15/2019
0.1.2 580 8/15/2019
0.1.1 556 8/15/2019
0.1.0 598 7/30/2019
0.0.32 602 7/26/2019
0.0.31 606 7/26/2019
0.0.24 598 7/25/2019
0.0.23 622 7/25/2019
0.0.22 574 7/25/2019
0.0.21 596 7/25/2019
0.0.20 582 7/25/2019
0.0.19 584 7/25/2019
0.0.18 612 7/25/2019
0.0.17 594 7/25/2019
0.0.16 631 7/23/2019
0.0.15 602 7/22/2019
0.0.14 658 7/22/2019
0.0.13 650 7/22/2019
0.0.12 597 7/22/2019
0.0.11 663 7/11/2019
0.0.10 645 7/10/2019
0.0.9 653 7/10/2019
0.0.8 618 7/9/2019
0.0.7 601 7/9/2019
0.0.6 607 7/9/2019
0.0.5 623 7/8/2019
0.0.4 621 7/8/2019
0.0.3 618 7/7/2019
0.0.2 598 7/4/2019
0.0.1 618 6/25/2019

This time really fixed apikey snippet in unauthorized message