Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 49 additions & 49 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@ The package is compatible with Python versions `3.7+`.
Install the package from PyPi using the following pip command:

```bash
pip install maxio-advanced-billing-sdk==9.0.0
pip install maxio-advanced-billing-sdk==9.1.0
```

You can also view the package at:
https://pypi.python.org/pypi/maxio-advanced-billing-sdk/9.0.0
https://pypi.python.org/pypi/maxio-advanced-billing-sdk/9.1.0

## Initialize the API Client

**_Note:_** Documentation for the client can be found [here.](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/client.md)
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/client.md)

The following parameters are configurable for the API Client:

| Parameter | Type | Description |
| --- | --- | --- |
| site | `str` | The subdomain for your Advanced Billing site.<br>*Default*: `"subdomain"` |
| environment | [`Environment`](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/README.md#environments) | The API environment. <br> **Default: `Environment.US`** |
| environment | [`Environment`](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/README.md#environments) | The API environment. <br> **Default: `Environment.US`** |
| http_client_instance | `Union[Session, HttpClientProvider]` | The Http Client passed from the sdk user for making requests |
| override_http_client_configuration | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
| http_call_back | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
Expand All @@ -54,8 +54,8 @@ The following parameters are configurable for the API Client:
| backoff_factor | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
| retry_statuses | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
| retry_methods | `Array of string` | The http methods on which retry is to be done. <br> **Default: ["GET", "PUT"]** |
| proxy_settings | [`ProxySettings`](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
| basic_auth_credentials | [`BasicAuthCredentials`](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/auth/basic-authentication.md) | The credential object for Basic Authentication |
| proxy_settings | [`ProxySettings`](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
| basic_auth_credentials | [`BasicAuthCredentials`](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/auth/basic-authentication.md) | The credential object for Basic Authentication |

The API client can be initialized as follows:

Expand Down Expand Up @@ -85,7 +85,7 @@ from advancedbilling.advanced_billing_client import AdvancedBillingClient
client = AdvancedBillingClient.from_environment(dotenv_path='/path/to/.env')
```

See the [Environment-Based Client Initialization](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/environment-based-client-initialization.md) section for details.
See the [Environment-Based Client Initialization](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/environment-based-client-initialization.md) section for details.

## Environments

Expand All @@ -102,60 +102,60 @@ The SDK can be configured to use a different environment for making API calls. A

This API uses the following authentication schemes.

* [`BasicAuth (Basic Authentication)`](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/auth/basic-authentication.md)
* [`BasicAuth (Basic Authentication)`](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/auth/basic-authentication.md)

## List of APIs

* [API Exports](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/api-exports.md)
* [Advance Invoice](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/advance-invoice.md)
* [Billing Portal](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/billing-portal.md)
* [Component Price Points](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/component-price-points.md)
* [Custom Fields](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/custom-fields.md)
* [Events-Based Billing Segments](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/events-based-billing-segments.md)
* [Payment Profiles](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/payment-profiles.md)
* [Product Families](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/product-families.md)
* [Product Price Points](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/product-price-points.md)
* [Proforma Invoices](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/proforma-invoices.md)
* [Reason Codes](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/reason-codes.md)
* [Referral Codes](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/referral-codes.md)
* [Sales Commissions](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/sales-commissions.md)
* [Subscription Components](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscription-components.md)
* [Subscription Groups](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscription-groups.md)
* [Subscription Group Invoice Account](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscription-group-invoice-account.md)
* [Subscription Group Status](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscription-group-status.md)
* [Subscription Invoice Account](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscription-invoice-account.md)
* [Subscription Notes](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscription-notes.md)
* [Subscription Products](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscription-products.md)
* [Subscription Renewals](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscription-renewals.md)
* [Subscription Status](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscription-status.md)
* [Coupons](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/coupons.md)
* [Components](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/components.md)
* [Customers](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/customers.md)
* [Events](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/events.md)
* [Insights](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/insights.md)
* [Invoices](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/invoices.md)
* [Offers](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/offers.md)
* [Products](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/products.md)
* [Sites](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/sites.md)
* [Subscriptions](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/subscriptions.md)
* [Webhooks](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/controllers/webhooks.md)
* [API Exports](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/api-exports.md)
* [Advance Invoice](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/advance-invoice.md)
* [Billing Portal](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/billing-portal.md)
* [Component Price Points](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/component-price-points.md)
* [Custom Fields](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/custom-fields.md)
* [Events-Based Billing Segments](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/events-based-billing-segments.md)
* [Payment Profiles](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/payment-profiles.md)
* [Product Families](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/product-families.md)
* [Product Price Points](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/product-price-points.md)
* [Proforma Invoices](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/proforma-invoices.md)
* [Reason Codes](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/reason-codes.md)
* [Referral Codes](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/referral-codes.md)
* [Sales Commissions](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/sales-commissions.md)
* [Subscription Components](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscription-components.md)
* [Subscription Groups](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscription-groups.md)
* [Subscription Group Invoice Account](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscription-group-invoice-account.md)
* [Subscription Group Status](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscription-group-status.md)
* [Subscription Invoice Account](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscription-invoice-account.md)
* [Subscription Notes](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscription-notes.md)
* [Subscription Products](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscription-products.md)
* [Subscription Renewals](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscription-renewals.md)
* [Subscription Status](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscription-status.md)
* [Coupons](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/coupons.md)
* [Components](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/components.md)
* [Customers](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/customers.md)
* [Events](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/events.md)
* [Insights](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/insights.md)
* [Invoices](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/invoices.md)
* [Offers](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/offers.md)
* [Products](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/products.md)
* [Sites](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/sites.md)
* [Subscriptions](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/subscriptions.md)
* [Webhooks](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/controllers/webhooks.md)

## SDK Infrastructure

### Configuration

* [ProxySettings](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/proxy-settings.md)
* [Environment-Based Client Initialization](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/environment-based-client-initialization.md)
* [ProxySettings](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/proxy-settings.md)
* [Environment-Based Client Initialization](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/environment-based-client-initialization.md)

### HTTP

* [HttpResponse](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/http-response.md)
* [HttpRequest](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/http-request.md)
* [HttpResponse](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/http-response.md)
* [HttpRequest](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/http-request.md)

### Utilities

* [ApiHelper](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/api-helper.md)
* [HttpDateTime](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/http-date-time.md)
* [RFC3339DateTime](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/rfc3339-date-time.md)
* [UnixDateTime](https://www.github.com/maxio-com/ab-python-sdk/tree/9.0.0/doc/unix-date-time.md)
* [ApiHelper](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/api-helper.md)
* [HttpDateTime](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/http-date-time.md)
* [RFC3339DateTime](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/rfc3339-date-time.md)
* [UnixDateTime](https://www.github.com/maxio-com/ab-python-sdk/tree/9.1.0/doc/unix-date-time.md)

7 changes: 3 additions & 4 deletions advancedbilling/controllers/advance_invoice_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def issue_advance_invoice(self,
our
docs](https://maxio.zendesk.com/hc/en-us/articles/24252026404749-Issue-Invoice
-In-Advance) for more information on advance invoices, including eligibility
on generating one; for the most part, they function like any other invoice,
for generating one; for the most part, they function like any other invoice,
except they are issued early and have special behavior upon being voided.
A subscription may only have one advance invoice per billing period.
Attempting to issue an advance invoice when one already exists will return an
Expand Down Expand Up @@ -106,9 +106,8 @@ def read_advance_invoice(self,
"""Perform a GET request to
/subscriptions/{subscription_id}/advance_invoice.json.

Once an advance invoice has been generated for a subscription's upcoming
renewal, it can be viewed through this endpoint. There can only be one
advance invoice per subscription per billing cycle.
Returns the advance invoice generated for a subscription's upcoming renewal.
There can only be one advance invoice per subscription per billing cycle.

Args:
subscription_id (int): The Chargify id of the subscription.
Expand Down
26 changes: 12 additions & 14 deletions advancedbilling/controllers/api_exports_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ def list_exported_proforma_invoices(self,
"""Perform a GET request to
/api_exports/proforma_invoices/{batch_id}/rows.json.

This API returns an array of exported proforma invoices for a provided
`batch_id`. Pay close attention to pagination in order to control responses
from the server.
Lists exported proforma invoices for a provided `batch_id`. Use pagination to
control responses returned from the server.
Example: `GET
https://{subdomain}.chargify.com/api_exports/proforma_invoices/123/rows?per_pa
ge=10000&page=1`.
Expand Down Expand Up @@ -116,8 +115,8 @@ def list_exported_invoices(self,
options=dict()):
"""Perform a GET request to /api_exports/invoices/{batch_id}/rows.json.

This API returns an array of exported invoices for a provided `batch_id`. Pay
close attention to pagination in order to control responses from the server.
Lists exported invoices for a provided `batch_id`. Use pagination to control
responses returned from the server.
Example: `GET
https://{subdomain}.chargify.com/api_exports/invoices/123/rows?per_page=10000&
page=1`.
Expand Down Expand Up @@ -182,9 +181,8 @@ def list_exported_subscriptions(self,
"""Perform a GET request to
/api_exports/subscriptions/{batch_id}/rows.json.

This API returns an array of exported subscriptions for a provided
`batch_id`. Pay close attention to pagination in order to control responses
from the server.
Lists exported subscriptions for a provided `batch_id`. Use pagination to
control responses returned from the server.
Example: `GET
https://{subdomain}.chargify.com/api_exports/subscriptions/123/rows?per_page=2
00&page=1`.
Expand Down Expand Up @@ -247,7 +245,7 @@ def list_exported_subscriptions(self,
def export_proforma_invoices(self):
"""Perform a POST request to /api_exports/proforma_invoices.json.

This API creates a proforma invoices export and returns a batchjob object.
Creates a proforma invoices export and returns a batch job object.
It is only available for Relationship Invoicing architecture.

Returns:
Expand Down Expand Up @@ -281,7 +279,7 @@ def export_proforma_invoices(self):
def export_invoices(self):
"""Perform a POST request to /api_exports/invoices.json.

This API creates an invoices export and returns a batchjob object.
Creates an invoices export and returns a batch job object.

Returns:
BatchJobResponse: Response from the API. Created
Expand Down Expand Up @@ -314,7 +312,7 @@ def export_invoices(self):
def export_subscriptions(self):
"""Perform a POST request to /api_exports/subscriptions.json.

This API creates a subscriptions export and returns a batchjob object.
Creates a subscriptions export and returns a batch job object.

Returns:
BatchJobResponse: Response from the API. Created
Expand Down Expand Up @@ -348,7 +346,7 @@ def read_proforma_invoices_export(self,
"""Perform a GET request to
/api_exports/proforma_invoices/{batch_id}.json.

This API returns a batchjob object for proforma invoices export.
Returns a batch job object for a proforma invoices export.

Args:
batch_id (str): Id of a Batch Job.
Expand Down Expand Up @@ -386,7 +384,7 @@ def read_invoices_export(self,
batch_id):
"""Perform a GET request to /api_exports/invoices/{batch_id}.json.

This API returns a batchjob object for invoices export.
Returns a batch job object for an invoices export.

Args:
batch_id (str): Id of a Batch Job.
Expand Down Expand Up @@ -424,7 +422,7 @@ def read_subscriptions_export(self,
batch_id):
"""Perform a GET request to /api_exports/subscriptions/{batch_id}.json.

This API returns a batchjob object for subscriptions export.
Returns a batch job object for a subscriptions export.

Args:
batch_id (str): Id of a Batch Job.
Expand Down
2 changes: 1 addition & 1 deletion advancedbilling/controllers/base_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class BaseController(object):
@staticmethod
def user_agent():
"""Return UserAgent value."""
return "AB SDK Python:9.0.0 on OS {os-info}"
return "AB SDK Python:9.1.0 on OS {os-info}"

@staticmethod
def user_agent_parameters():
Expand Down
Loading
Loading