Skip to main content

SDK for Berbix integrations

Project description

Berbix Python SDK

This Berbix Python library provides simple interfaces to interact with the Berbix API.

Installation

pip install berbix

Usage

Constructing a client

import berbix

client = berbix.Client(
  client_id='your_client_id_here',
  client_secret='your_client_secret_here')

Create a transaction

var transactionTokens = client.createTransaction({
  "customer_uid": "interal_customer_uid", // ID for the user in internal database
  "template_key": "your_template_key", // Template key for this transaction
})

Create tokens from refresh token

refresh_token = '' # fetched from database
transaction_tokens = Tokens.from_refresh(refresh_token)

Fetch transaction data

transaction_data = client.fetch_transaction(transaction_tokens)

Reference

Client

Methods

constructor(options)

Supported options:

  • client_id (required) - The client ID that can be found in your Berbix Dashboard.
  • client_secret (required) - The client secret that can be found in your Berbix Dashboard.
  • environment - Which environment the client uses, defaults to :production.
  • http_client - An optional override for the default HTTP client.
create_transaction(options): Tokens

Creates a transaction within Berbix to initialize the client SDK. Typically after creating a transaction, you will want to store the refresh token in your database associated with the currently active user session.

Supported options:

  • email - Previously verified email address for a user.
  • phone - Previously verified phone number for a user.
  • customer_uid - An ID or identifier for the user in your system.
  • template_key - The template key for this transaction.
fetch_transaction(tokens: Tokens): object

Fetches all of the information associated with the transaction. If the user has already completed the steps of the transaction, then this will include all of the elements of the transaction payload as described on the Berbix developer docs.

refresh_tokens(tokens: Tokens): void

This is typically not needed to be called explicitly as it will be called by the higher-level SDK methods, but can be used to get fresh client or access tokens.

Tokens

Properties

access_token: string

This is the short-lived bearer token that the backend SDK uses to identify requests associated with a given transaction. This is not typically needed when using the higher-level SDK methods.

client_token: string

This is the short-lived token that the frontend SDK uses to identify requests associated with a given transaction. After transaction creation, this will typically be sent to a frontend SDK.

refresh_token: string

This is the long-lived token that allows you to create new tokens after the short-lived tokens have expired. This is typically stored in the database associated with the given user session.

transaction_id: number

The internal Berbix ID number associated with the transaction.

expiry: Date

The time at which the access and client tokens will expire.

Static methods

from_refresh(refreshToken: string): Tokens

Creates a tokens object from a refresh token, which can be passed to higher-level SDK methods. The SDK will handle refreshing the tokens for accessing relevant data.

Publishing

To release a new version of the SDK, first bump the version in `setup.py`.

python setup.py sdist bdist_wheel
twine upload dist/*

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

berbix-0.0.9.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

berbix-0.0.9-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page