maxio / advanced-billing-sdk
Ultimate billing and pricing flexibility for B2B SaaS. Maxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments.
Requires
- php: ^7.2 || ^8.0
- ext-json: *
- apimatic/core: ~0.3.11
- apimatic/core-interfaces: ~0.1.5
- apimatic/unirest-php: ^4.0.0
Requires (Dev)
- phan/phan: 5.4.2
- squizlabs/php_codesniffer: ^3.5
README
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
Run the following command to install the package and automatically add the dependency to your composer.json file:
composer require "maxio/advanced-billing-sdk:5.2.0"
Or add it to the composer.json file manually as given below:
"require": { "maxio/advanced-billing-sdk": "5.2.0" }
You can also view the package at: https://packagist.org/packages/maxio/advanced-billing-sdk#5.2.0
Initialize the API Client
Note: Documentation for the client can be found here.
The following parameters are configurable for the API Client:
The API client can be initialized as follows:
$client = AdvancedBillingClientBuilder::init() ->basicAuthCredentials( BasicAuthCredentialsBuilder::init( 'BasicAuthUserName', 'BasicAuthPassword' ) ) ->environment(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
Authorization
This API uses the following authentication schemes.
List of APIs
- API Exports
- Advance Invoice
- Billing Portal
- Component Price Points
- 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