Maxio.AdvancedBillingSdk
2.0.0
See the version list below for details.
dotnet add package Maxio.AdvancedBillingSdk --version 2.0.0
NuGet\Install-Package Maxio.AdvancedBillingSdk -Version 2.0.0
<PackageReference Include="Maxio.AdvancedBillingSdk" Version="2.0.0" />
paket add Maxio.AdvancedBillingSdk --version 2.0.0
#r "nuget: Maxio.AdvancedBillingSdk, 2.0.0"
// Install Maxio.AdvancedBillingSdk as a Cake Addin #addin nuget:?package=Maxio.AdvancedBillingSdk&version=2.0.0 // Install Maxio.AdvancedBillingSdk as a Cake Tool #tool nuget:?package=Maxio.AdvancedBillingSdk&version=2.0.0
Getting Started with Maxio Advanced Billing
Introduction
Maxio Advanced Billing (formerly Chargify) provides an HTTP-based API that conforms to the principles of REST. One of the many reasons to use Advanced Billing is the immense feature set and surrounding community client libraries. The Maxio API returns JSON responses as the primary and recommended format, but XML is also provided as a backwards compatible option for Merchants who require it.
Steps to make your first Maxio Advanced Billing API call
- Sign-up or log-in to your test site account.
- Setup and configure authentication credentials.
- Submit your API request and try it out.
- Verify results through response.
- Test our integrations.
We strongly suggest exploring the developer portal, our integrations and the API guide, as well as the entire set of application-based documentation to aid in your discovery of the product.
Example
The following example uses the curl command-line tool to execute API requests.
Request
curl -u <api_key>:x -H Accept:application/json -H Content-Type:application/json https://acme.chargify.com/subscriptions.json
Install the Package
If you are building with .NET CLI tools then you can also use the following command:
dotnet add package Maxio.AdvancedBillingSdk --version 2.0.0
You can also view the package at: https://www.nuget.org/packages/Maxio.AdvancedBillingSdk/2.0.0
Initialize the API Client
Note: Documentation for the client can be found here.
The following parameters are configurable for the API Client:
Parameter | Type | Description |
---|---|---|
Subdomain |
string |
The subdomain for your Chargify site.<br>Default: "subdomain" |
Domain |
string |
The Chargify server domain.<br>Default: "chargify.com" |
Environment |
Environment |
The API environment. <br> Default: Environment.Production |
Timeout |
TimeSpan |
Http client timeout.<br>Default: TimeSpan.FromSeconds(30) |
BasicAuthCredentials |
BasicAuthCredentials |
The Credentials Setter for Basic Authentication |
The API client can be initialized as follows:
AdvancedBilling.Standard.AdvancedBillingClient client = new AdvancedBilling.Standard.AdvancedBillingClient.Builder()
.BasicAuthCredentials(
new BasicAuthModel.Builder(
"BasicAuthUserName",
"BasicAuthPassword"
)
.Build())
.Environment(AdvancedBilling.Standard.Environment.Production)
.Subdomain("subdomain")
.Domain("chargify.com")
.Build();
Environments
The SDK can be configured to use a different environment for making API calls. Available environments are:
Fields
Name | Description |
---|---|
production | Default Production server |
environment2 | Production server |
Authorization
This API uses the following authentication schemes.
List of APIs
- API Exports
- Advance Invoice
- Billing Portal
- Custom Fields
- Events-Based Billing Segments
- Payment Profiles
- Product Families
- Product Price Points
- Proforma Invoices
- Reason Codes
- Referral Codes
- Sales Commissions
- Subscription Components
- Subscription Groups
- Subscription Group Invoice Account
- Subscription Group Status
- Subscription Invoice Account
- Subscription Notes
- Subscription Products
- Subscription Status
- Coupons
- Components
- Customers
- Events
- Insights
- Invoices
- Offers
- Products
- Sites
- Subscriptions
- Webhooks
Classes Documentation
Product | Versions 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- APIMatic.Core (>= 0.3.6)
- JsonSubTypes (>= 2.0.1)
- Microsoft.CSharp (>= 4.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.