This is a test SDK
Project description
Getting Started with MX Platform API
Introduction
The MX Platform API is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.
What's Changed?
Several endpoints, headers, and fields changed in v20250224. For more on breaking changes, refer to our versioning and migration guides.
Version Header
Versions are set in the Accept-Version header of API requests. Version numbers correspond with the date associated with that version. The example below uses the version v20250224.
-H 'Accept: application/json'
-H 'Accept-Version: v20250224'
Install the Package
The package is compatible with Python versions 3.7+.
Install the package from PyPi using the following pip command:
pip install apimatic-mx-apis-sdk==0.0.1
You can also view the package at: https://pypi.python.org/pypi/apimatic-mx-apis-sdk/0.0.1
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 |
|---|---|---|
| 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 |
| basic_auth_credentials | BasicAuthCredentials |
The credential object for Basic Authentication |
| 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 mxplatformapi.configuration import Environment
from mxplatformapi.http.auth.basic_auth import BasicAuthCredentials
from mxplatformapi.http.auth.bearer_auth import BearerAuthCredentials
from mxplatformapi.logging.configuration.api_logging_configuration import LoggingConfiguration
from mxplatformapi.logging.configuration.api_logging_configuration import RequestLoggingConfiguration
from mxplatformapi.logging.configuration.api_logging_configuration import ResponseLoggingConfiguration
from mxplatformapi.mxplatformapi_client import MxplatformapiClient
client = MxplatformapiClient(
basic_auth_credentials=BasicAuthCredentials(
username='Username',
password='Password'
),
bearer_auth_credentials=BearerAuthCredentials(
access_token='AccessToken'
),
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 mxplatformapi.mxplatformapi_client import MxplatformapiClient
# Specify the path to your .env file if it’s located outside the project’s root directory.
client = MxplatformapiClient.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 |
| ENVIRONMENT2 | - |
Authorization
This API uses the following authentication schemes.
List of APIs
- Achreturn
- Investmentholdings
- Monthlycashflowprofile
- Processortoken
- Spendingplan
- Transactionrules
- Verifiablecredentials
- Manageddata Deprecated
- Accounts
- Budgets
- Categories
- Goals
- Insights
- Institutions
- Members
- Merchants
- Microdeposits
- Notifications
- Rewards
- Statements
- Taggings
- Tags
- Transactions
- Users
- Widgets
- Jobs
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 apimatic_mx_apis_sdk-0.0.1.tar.gz.
File metadata
- Download URL: apimatic_mx_apis_sdk-0.0.1.tar.gz
- Upload date:
- Size: 193.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bed1d282dd522c3a4f671d3054b77224895a153b11acdbffc1676b7013c0627
|
|
| MD5 |
39cc2c7852c87057b7401a30ba2cf227
|
|
| BLAKE2b-256 |
cb1540510dc5ab6c64c114481f0936bd86544282f69978ffcb9b97ba493cd8eb
|
File details
Details for the file apimatic_mx_apis_sdk-0.0.1-py3-none-any.whl.
File metadata
- Download URL: apimatic_mx_apis_sdk-0.0.1-py3-none-any.whl
- Upload date:
- Size: 492.4 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 |
17ab787e9e46951476a183c9a86cea47f1449c74e879202cce0a66d115b6047d
|
|
| MD5 |
82fbd907c3dfa154a749f4f3ff7f5c8d
|
|
| BLAKE2b-256 |
d0a906456208d2bd3b170f61d9481b8badac5157b21b0f01c350e1316dbffe8e
|