Sample SDKs for Univapay by APIMatic
Project description
Getting Started with Univapay Public API
Introduction
OpenAPI specification for the Univapay Online Payment API.
Authentication (JWT)
This API uses JWT (JSON Web Tokens) for authentication via the HTTP Authorization header. To authenticate, you must generate an Application Token in the Univapay dashboard. This generates two components: 1. Token ({jwt}) 2. Secret ({secret})
⚠️ Security Warning
The Secret grants extensive privileges (e.g., creating charges, capturing authorized card charges, refunding).
NEVER expose the {secret} in frontend application code (e.g., consumer browsers) or public repositories. It is strictly for backend server-to-server communication.
Univapay is not responsible for accidents caused by leaked secrets.
Bearer Auth Formats
Depending on where you are calling the API from, the Bearer format changes:
- Frontend / Browser (No Secret):
Bearer {jwt}(Used for Widgets or Inline Forms. You must register your allowed domains in the dashboard when creating the token). - Backend / Server (With Secret):
Bearer {secret}.{jwt}(Required for all backend processing).
We will assume that all requests are going to originate from a backend server thus, all requests will require the secret
Token Types
- Store Token: Grants full access to requests for that specific store.
- Merchant Token: Can't create transaction tokens but can access data from multiple stores.
Install the Package
The package is compatible with Python versions 3.7+.
Install the package from PyPi using the following pip command:
pip install univapay-apimatic-sdk==0.0.4
You can also view the package at: https://pypi.python.org/pypi/univapay-apimatic-sdk/0.0.4
Test the SDK
You can test the generated SDK and the server with test cases. unittest is used as the testing framework and pytest is used as the test runner. You can run the tests as follows:
Navigate to the root directory of the SDK and run the following commands
pip install -r test-requirements.txt pytest
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 |
|---|---|---|
| base_url | str |
Base URL for the API Default: "https://api.univapay.com" |
| environment | Environment |
The API environment. Default: Environment.PRODUCTION |
| 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 |
| timeout | float |
The value to use for connection timeout. Default: 30 |
| max_retries | int |
The number of times to retry an endpoint call if it fails. Default: 0 |
| backoff_factor | float |
A backoff factor to apply between attempts after the second try. Default: 2 |
| retry_statuses | Array of int |
The http statuses on which retry is to be done. 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. Default: ["GET", "PUT"] |
| proxy_settings | ProxySettings |
Optional proxy configuration to route HTTP requests through a proxy server. |
| logging_configuration | LoggingConfiguration |
The SDK logging configuration for API calls |
| bearer_auth_credentials | BearerAuthCredentials |
The credential object for OAuth 2 Bearer token |
The API client can be initialized as follows:
Code-Based Client Initialization
import logging
from univapayclientsdk.configuration import Environment
from univapayclientsdk.http.auth.oauth_2 import BearerAuthCredentials
from univapayclientsdk.logging.configuration.api_logging_configuration import LoggingConfiguration
from univapayclientsdk.logging.configuration.api_logging_configuration import RequestLoggingConfiguration
from univapayclientsdk.logging.configuration.api_logging_configuration import ResponseLoggingConfiguration
from univapayclientsdk.univapay_client_sdk_client import UnivapayClientSdkClient
client = UnivapayClientSdkClient(
bearer_auth_credentials=BearerAuthCredentials(
access_token='AccessToken'
),
environment=Environment.PRODUCTION,
base_url='https://api.univapay.com',
logging_configuration=LoggingConfiguration(
log_level=logging.INFO,
request_logging_config=RequestLoggingConfiguration(
log_body=True
),
response_logging_config=ResponseLoggingConfiguration(
log_headers=True
)
)
)
Environment-Based Client Initialization
from univapayclientsdk.univapay_client_sdk_client import UnivapayClientSdkClient
# Specify the path to your .env file if it’s located outside the project’s root directory.
client = UnivapayClientSdkClient.from_environment(dotenv_path='/path/to/.env')
See the Environment-Based Client Initialization section for details.
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 |
Authorization
This API uses the following authentication schemes.
List of APIs
Webhooks
- Charge Updated
- Charge Finished
- Token Created
- Token Updated
- Token Three Ds Updated
- Token Cvv Auth Updated
- Token Cvv Auth Check Updated
- Token Replaced
- Recurring Token Deleted
- Refund
- Cancel
- Subscription Created
- Subscription Payment
- Subscription Completed
- Subscription Failure
- Subscription Canceled
- Subscription Suspended
- Bank-Transfer
- Customs
SDK Infrastructure
Configuration
- ProxySettings
- Environment-Based Client Initialization
- AbstractLogger
- LoggingConfiguration
- RequestLoggingConfiguration
- ResponseLoggingConfiguration
HTTP
Utilities
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file univapay_apimatic_sdk-0.0.4.tar.gz.
File metadata
- Download URL: univapay_apimatic_sdk-0.0.4.tar.gz
- Upload date:
- Size: 136.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bda5365d2e969b6e506d5111a131ed0cd754af38aad42d9514681232314628d
|
|
| MD5 |
2c7356680ce99be10ff1fdc15b42f5e3
|
|
| BLAKE2b-256 |
6ef0d7107ca242fefa48856b9b4efef3321eed1e0d52cc87e770e946f951f0d2
|
File details
Details for the file univapay_apimatic_sdk-0.0.4-py3-none-any.whl.
File metadata
- Download URL: univapay_apimatic_sdk-0.0.4-py3-none-any.whl
- Upload date:
- Size: 365.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8305bce70c8856cf6975e0f1946a676a7fdad8c7fb0644c18efac1fc08b5243f
|
|
| MD5 |
120875d0801d35cc3d4a1f8236b3018b
|
|
| BLAKE2b-256 |
4166e77014a5696bdf02acb2fea57ecaf8f7fb011128cc06dae7bfc637e72dba
|