SDKs for WP
Project description
Getting Started with Reporting: Settlement Research API
Introduction
API used to search and retrieve settled transactions. This API is used to search settled transactions and retrieve individual transaction details based on card types.
Install the Package
The package is compatible with Python versions 3.7+.
Install the package from PyPi using the following pip command:
pip install wp-sdk==1.0.0
You can also view the package at: https://pypi.python.org/pypi/wp-sdk/1.0.0
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 |
|---|---|---|
| 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: 60 |
| 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 |
| custom_header_authentication_credentials | CustomHeaderAuthenticationCredentials |
The credential object for Custom Header Signature |
The API client can be initialized as follows:
Code-Based Client Initialization
import logging
from reportingsettlementresearchapi.configuration import Environment
from reportingsettlementresearchapi.http.auth.custom_header_authentication import CustomHeaderAuthenticationCredentials
from reportingsettlementresearchapi.logging.configuration.api_logging_configuration import LoggingConfiguration
from reportingsettlementresearchapi.logging.configuration.api_logging_configuration import RequestLoggingConfiguration
from reportingsettlementresearchapi.logging.configuration.api_logging_configuration import ResponseLoggingConfiguration
from reportingsettlementresearchapi.reportingsettlementresearchapi_client import ReportingsettlementresearchapiClient
client = ReportingsettlementresearchapiClient(
custom_header_authentication_credentials=CustomHeaderAuthenticationCredentials(
authorization='Authorization'
),
environment=Environment.PRODUCTION,
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 reportingsettlementresearchapi.reportingsettlementresearchapi_client import ReportingsettlementresearchapiClient
# Specify the path to your .env file if it’s located outside the project’s root directory.
client = ReportingsettlementresearchapiClient.from_environment(dotenv_path='/path/to/.env')
See the Environment-Based Client Initialization section for details.
Authorization
This API uses the following authentication schemes.
List of APIs
- Settlement Errors
- Settlement Daily Totals
- Settlement Batches
- Transaction Type
- Transaction Status
- Settlements
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 wp_sdk-1.0.0.tar.gz.
File metadata
- Download URL: wp_sdk-1.0.0.tar.gz
- Upload date:
- Size: 107.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
906914eef204cbf0ff369a7aa1f9f7b204dd33719448a452229ca12940249ade
|
|
| MD5 |
1cbd42f923351576b247370ffa5e044d
|
|
| BLAKE2b-256 |
15059b7da4a0478bdeb754d866d788ea74696826037ef5b2542b5f575bf09721
|
File details
Details for the file wp_sdk-1.0.0-py3-none-any.whl.
File metadata
- Download URL: wp_sdk-1.0.0-py3-none-any.whl
- Upload date:
- Size: 339.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 |
eb3d3006ef426aa52b9d11ff0a6158ce0067ba54d9536a85203602ac1bd149bd
|
|
| MD5 |
768d3c04f5002fe3b83b4361c35db8a0
|
|
| BLAKE2b-256 |
b773eb6a8116f4feb0e99425b8a74f3de07905aece418f2344af54597aa6ea7c
|