Demo Billing SDK
Project description
billing
SDK Installation
pip install speakeasy-billing
SDK Example Usage
import billing
from billing.models import shared
s = billing.Billing(
security=shared.Security(
api_key_auth="",
),
)
req = shared.NewCustomer(
auto_collection=False,
billing_address=shared.NewCustomerBillingAddress(
city='Jenafurt',
country='US',
line1='Money blue shred',
line2='technology East',
postal_code='30778',
state='quantify Polestar mobile',
),
currency='Guarani',
email='Alessandra.Gerlach51@yahoo.com',
external_customer_id='Bike',
metadata=shared.NewCustomerMetadata(),
name='Buckinghamshire functionalities Grocery',
payment_provider=shared.NewCustomerPaymentProvider.QUICKBOOKS,
payment_provider_id='Northwest Direct',
shipping_address=shared.NewCustomerShippingAddress(
city='Port Alfreda',
country='US',
line1='Interactions Senior Mouse',
line2='or',
postal_code='02665',
state='likewise payment 1080p',
),
tax_id=shared.NewCustomerCustomerTaxID(
country='Equatorial Guinea',
type='silver Indiana',
value='Toyota Neptunium round',
),
timezone='Etc/UTC',
)
res = s.customer.create(req)
if res.customer is not None:
# handle response
Available Resources and Operations
availability
- ping - Check availability
coupon
- archive - Archive coupon
- create - Create coupon
- fetch - Fetch coupon
- list - List coupons
- list_subscriptions - List coupon subscriptions
credit
- add_by_external_id - Create ledger entry by external ID
- create - Create ledger entry
- fetch - Fetch customer credit balance
- fetch_by_external_id - Fetch customer credit balance by external customer id
- fetch_ledger - Fetch customer credits ledger
- fetch_ledger_external_id - Fetch credits ledger by external ID
credit_note
customer
- amend - Amend usage
- amend_by_external_id - Amend usage by external ID
- create - Create customer
- create_balance_transaction - Create customer balance transaction
- delete - Delete customer
- fetch - Fetch customer
- fetch_by_external_id - Fetch customer by external ID
- fetch_costs - Fetch customer costs
- fetch_costs_by_external_id - Fetch customer costs by external ID
- fetch_transactions - List balance transactions
- list - List customers
- update_by_external_id - Update customer by external ID
- update_customer - Update customer
event
- amend - Amend event
- close_backfill - Close backfill
- create - Create backfill
- deprecate_event - Deprecate event
- ingest - Ingest events
- list_backfills - List backfills
- revert_backfill - Revert backfill
- search - Search events
invoice
- create - Create invoice line item
- fetch - Fetch invoice
- fetch_upcoming - Fetch upcoming invoice
- issue - Issue an invoice
- list - List invoices
- void - Void invoice
plan
- fetch - Fetch plan
- get_by_external_id - Fetch plan by external ID
- list - List plans
subscription
- cancel - Cancel subscription
- create - Create subscription
- fetch - Fetch subscription
- fetch_costs - Fetch subscription costs
- fetch_schedule - Fetch subscription schedule
- fetch_usage - Fetch subscription usage
- list - List subscriptions
- schedule_plan_change - Schedule plan change
- unschedule_cancellation - Unschedule subscription cancellation
- unschedule_plan_change - Unschedule plan change
- update_fixed_fee_quantity - Update price quantity
Pagination
Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
returned response object will have a Next
method that can be called to pull down the next group of results. If the
return value of Next
is None
, then there are no more pages to be fetched.
Here's an example of one such pagination call:
Development
Maturity
This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.
Contributions
While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!
SDK Created by Speakeasy
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for speakeasy_billing-0.4.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4512cf72bb4aef86b5fe9eb9a9bb1b40e03cb4947464c1ac79b475d19a31d19 |
|
MD5 | 80830ed870c5bf688ba480aa75b83f16 |
|
BLAKE2b-256 | bae437f111355b862198121c95400d40f76cfb115d38247bb0e183619512ff22 |