Skip to content

christianscheuer/chargebee-dotnet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chargebee .Net Client Library - API V2

NuGet

This is the .NET Library for integrating with Chargebee. Sign up for a Chargebee account here.

Chargebee now supports two API versions - V1 and V2, of which V2 is the latest release and all future developments will happen in V2. This library is for API version V2. If you’re looking for V1, head to chargebee-v1 branch.

Installation

Install the latest version of the 2.x.x library with the following commands:

Use NuGet: NuGet is a package manager for Visual Studio.

To install the ChargeBee .Net Client Library, run the following command in the Package Manager Console:

$ Install-Package ChargeBee -Vesrion 2.x.x

If you would prefer to build it from source, checkout latest version of 2.x.x release tag:

$ git checkout [latest 2.x.x release tag]

Documentation

See our .Net API Reference.

Usage

To create a new subscription:

using ChargeBee.Api;
using ChargeBee.Models;
ApiConfig.Configure("site","api_key");
EntityResult result = Subscription.Create()
              .PlanId("basic")
			  .Request();
Subscription subscription = result.Subscription;
Customer customer = result.Customer;

License

See the LICENSE file.

About

.NET API Client for integrating with ChargeBee

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%