investec-za-pb

Python Client SDK Generated by Speakeasy.


Install
pip install investec-za-pb==0.1.2

Documentation

investec-za-pb

Developer-friendly & type-safe Python SDK specifically catered to leverage investec-za-pb API.



Important

This SDK is not yet ready for production use. To complete setup please follow the steps outlined in your workspace. Delete this section before > publishing to a package manager.

Summary

SA PB Account Information: # Introduction The Investec Private Banking API is a set of programmatic endpoints that can access Private Bank personal and business banking accounts. This API allows you to access the following:

  • Accounts
  • Balances
  • Transactions
  • Beneficiaries
  • Beneficiary Payments
  • Account Transfers
  • Documents

There are many possible use cases for the Account Information API: from extracting the data to aggregate it with financial data from other banking institutions to personal money management tools.

Getting Started

To start using the Programmable Card API, you'll need API credentials, which you can access in your Investec Online Banking profile. Create a new API key (x-api-key) with specified API scopes. Remember to include the cards scope

Optionally, use the Investec Sandbox account and credentials to generate mock responses to test your applications. You can use the Sandbox account without opening an Investec Private Bank account.

Run with Postman

Open the collection in postman
or fork
Run in Postman

The instructions below will guide you through the process of authenticating in the Postman app:

  1. Set the verb to POST and enter the auth URL https://openapi.investec.com/identity/v2/oauth2/token as the request URL.
  2. The endpoint receives your client ID and client secret as BASIC authentication headers. Select the Authorization tab and select BASIC AUTH from the Type list.
  3. Enter your client_ID into the USERNAME field and your secret into the PASSWORD field
  4. Select the Headers tab and enter the x-api-key into the KEY field
  5. Enter your API key into the VALUE field
  6. Select the Body tab and select the x-www-form-urlencoded option
  7. Enter grant_type into the KEY field and client_credentials into the VALUE field.
  8. Send off your request.

If your keys are valid, the response will contain an access token and the number of seconds the access token is valid. Sample response:

{ "access_token": "Z1CRQarGOSogNuUhRlENi5iKAGqh�, "token_type": "Bearer", "expires_in": 1799, "scope": "accounts" }

Authentication

  1. OAuth 2.0 access tokens are used to authenticate requests. Your access token authorises you to use the Programmable Card API.
  2. To call the API, you must exchange your client ID, secret and API (x-api-key) key for an access token.
  3. You need to include the access token in the Authorisation header with the designation bearer when making calls to the API
  4. The access token returned during the authentication request is valid for 30 minutes, at which point it will expire, and you will need to request a new one by calling /identity/v2/oauth2/token again.

When you make calls to the API, include the access token in the Authorisation header with the designation as Bearer.

Release Notes

2024-11-07

  • Enhancement: Added an additional pending transactions endpoint za/pb/v1/accounts/{accountid}/pending-transactions just returning the pending ones with only the properties available.
  • Enhancement: Added the pending transactions to the existing transactions endpoint. Append ?includePending=true to the querystring
  • Enhancement: Added a uuid property to the transactions endpoint. ( accountId.Substring(accountId.Length - 5) + postingDate.Replace("-", "") + postedOrder.PadLeft(7, '0') ) This will only be populated for posted transaction on Private Bank Accounts. This is not a backend banking generated ID and will change if any of the properties making it up changes.
  • Enhancement: Added approved beneficiaries to the beneficiary endpoint. They can be identified by the "beneficiaryType": "INVESTECAPPROVED" property with another new property eg. "approvedBeneficiaryCategory": "Municipalities"

2023-09-07

  • Enhancement: Added payment initiation requiring authorisation

2023-08-24

  • Enhancement: Added document retreival
  • Enhancement: Added more balances to the Balance endpoint

2023-05-29

  • Enhancement: Updated response codes returned

2023-03-05

  • Enhancement: Added a sandbox environment

2022-11-25

  • Enhancement: Included inter account transfers v2 - Transfer Multiple v2
  • Enhancement: Included beneficiary payments - Pay Multiple
  • Enhancement: Included beneficiaries - Get Beneficiaries
  • Enhancement: Included beneficiary categories - Get Beneficiary Categories
  • Enhancement: Added properties kycCompliant and profileId to accounts - Get Accounts
  • Enhancement: Added property profileId to beneficiaries - Beneficiaries

2022-02-21

  • Enhancement: Included inter account transfers - Transfer Multiple

2021-10-01

  • Fix: The runningBalance on transactions shows (-) if it is a negative balance - Get Account Transactions

2020-07-21

  • Enhancement: Included transactionDate to - Get Account Transactions
  • Enhancement: Included date range filter to - Get Account Transactions

2020-09-08

  • Fix: Implemented CORS support
  • Fix: Implemented multi User-Agent support

2020-11-10

  • Enhancement: Included postedOrder to - Get Account Transactions
  • Enhancement: Included transactionType to - Get Account Transactions

2020-11-13

  • Enhancement: Included transaction type filter to - Get Account Transactions

More information about the API can be found at .

Table of Contents

SDK Installation

Tip

To finish publishing your SDK to PyPI you must run your first generation action.

The SDK can be installed with either pip or poetry package managers.

PIP

PIP is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.

pip install git+https://github.com/rijnhardtkotze/investec-za-pb-python.git

Poetry

Poetry is a modern tool that simplifies dependency management and package publishing by using a single pyproject.toml file to handle project metadata and dependencies.

poetry add git+https://github.com/rijnhardtkotze/investec-za-pb-python.git

IDE Support

PyCharm

Generally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.

SDK Example Usage

Example

# Synchronous Example
import investec_za_pb
from investec_za_pb import Investec
import os

with Investec(
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all()

    # Handle response
    print(res)

The same SDK client can also be used to make asychronous requests by importing asyncio.

# Asynchronous Example
import asyncio
import investec_za_pb
from investec_za_pb import Investec
import os

async def main():
    async with Investec(
        security=investec_za_pb.Security(
            client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
            client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
        ),
    ) as investec:

        res = await investec.accounts.get_all_async()

        # Handle response
        print(res)

asyncio.run(main())

Authentication

Per-Client Security Schemes

This SDK supports the following security scheme globally:

Name Type Scheme Environment Variable
client_id
client_secret
oauth2 OAuth2 Client Credentials Flow INVESTEC_CLIENT_ID
INVESTEC_CLIENT_SECRET
INVESTEC_TOKEN_URL

You can set the security parameters through the security optional parameter when initializing the SDK client instance. For example:

import investec_za_pb
from investec_za_pb import Investec
import os

with Investec(
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all()

    # Handle response
    print(res)

Available Resources and Operations

Available methods
  • transfer - Transfer Multiple (TO BE DEPRECATED) ⚠️ Deprecated
  • transfer_v2 - Transfer Multiple v2
  • get - Get Profiles

Retries

Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.

To change the default retry strategy for a single API call, simply provide a RetryConfig object to the call:

import investec_za_pb
from investec_za_pb import Investec
from investec_za_pb.utils import BackoffStrategy, RetryConfig
import os

with Investec(
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all(,
        RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))

    # Handle response
    print(res)

If you'd like to override the default retry strategy for all operations that support retries, you can use the retry_config optional parameter when initializing the SDK:

import investec_za_pb
from investec_za_pb import Investec
from investec_za_pb.utils import BackoffStrategy, RetryConfig
import os

with Investec(
    retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all()

    # Handle response
    print(res)

Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.

By default, an API error will raise a models.APIError exception, which has the following properties:

Property Type Description
.status_code int The HTTP status code
.message str The error message
.raw_response httpx.Response The raw HTTP response
.body str The response content

When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective Errors tables in SDK docs for more details on possible exception types for each operation. For example, the get_all_async method may raise the following exceptions:

Error Type Status Code Content Type
models.APIError 4XX, 5XX */*

Example

import investec_za_pb
from investec_za_pb import Investec, models
import os

with Investec(
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:
    res = None
    try:

        res = investec.accounts.get_all()

        # Handle response
        print(res)

    except models.APIError as e:
        # handle exception
        raise(e)

Server Selection

Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the server_url: str optional parameter when initializing the SDK client instance. For example:

import investec_za_pb
from investec_za_pb import Investec
import os

with Investec(
    server_url="https://openapi.investec.com",
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all()

    # Handle response
    print(res)

Custom HTTP Client

The Python SDK makes API calls using the httpx HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance. Depending on whether you are using the sync or async version of the SDK, you can pass an instance of HttpClient or AsyncHttpClient respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls. This allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of httpx.Client or httpx.AsyncClient directly.

For example, you could specify a header for every request that this sdk makes as follows:

from investec_za_pb import Investec
import httpx

http_client = httpx.Client(headers={"x-custom-header": "someValue"})
s = Investec(client=http_client)

or you could wrap the client with your own custom logic:

from investec_za_pb import Investec
from investec_za_pb.httpclient import AsyncHttpClient
import httpx

class CustomClient(AsyncHttpClient):
    client: AsyncHttpClient

    def __init__(self, client: AsyncHttpClient):
        self.client = client

    async def send(
        self,
        request: httpx.Request,
        *,
        stream: bool = False,
        auth: Union[
            httpx._types.AuthTypes, httpx._client.UseClientDefault, None
        ] = httpx.USE_CLIENT_DEFAULT,
        follow_redirects: Union[
            bool, httpx._client.UseClientDefault
        ] = httpx.USE_CLIENT_DEFAULT,
    ) -> httpx.Response:
        request.headers["Client-Level-Header"] = "added by client"

        return await self.client.send(
            request, stream=stream, auth=auth, follow_redirects=follow_redirects
        )

    def build_request(
        self,
        method: str,
        url: httpx._types.URLTypes,
        *,
        content: Optional[httpx._types.RequestContent] = None,
        data: Optional[httpx._types.RequestData] = None,
        files: Optional[httpx._types.RequestFiles] = None,
        json: Optional[Any] = None,
        params: Optional[httpx._types.QueryParamTypes] = None,
        headers: Optional[httpx._types.HeaderTypes] = None,
        cookies: Optional[httpx._types.CookieTypes] = None,
        timeout: Union[
            httpx._types.TimeoutTypes, httpx._client.UseClientDefault
        ] = httpx.USE_CLIENT_DEFAULT,
        extensions: Optional[httpx._types.RequestExtensions] = None,
    ) -> httpx.Request:
        return self.client.build_request(
            method,
            url,
            content=content,
            data=data,
            files=files,
            json=json,
            params=params,
            headers=headers,
            cookies=cookies,
            timeout=timeout,
            extensions=extensions,
        )

s = Investec(async_client=CustomClient(httpx.AsyncClient()))

Debugging

You can setup your SDK to emit debug logs for SDK requests and responses.

You can pass your own logger class directly into your SDK.

from investec_za_pb import Investec
import logging

logging.basicConfig(level=logging.DEBUG)
s = Investec(debug_logger=logging.getLogger("investec_za_pb"))

You can also enable a default debug logger by setting an environment variable INVESTEC_DEBUG to true.

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. Any manual changes added to internal files will be overwritten on the next generation. We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.

SDK Created by Speakeasy