Skip to main content

Access standardized banking data from our banking integrations.

Project description

Banking

Use Codat's API to connect to your SMB customer's banks and pull up-to-date standardized account and transaction data from their bank accounts via our partner providers.

SDK Installation

pip install codat-banking

Example Usage

import codatbanking
from codatbanking.models import operations, shared

s = codatbanking.CodatBanking(
    security=shared.Security(
        auth_header="Basic BASE_64_ENCODED(API_KEY)",
    ),
)

req = operations.ListAccountBalancesRequest(
    company_id='8a210b68-6988-11ed-a1eb-0242ac120002',
    connection_id='2e9d2c44-f675-40ba-8049-353bfcb5e171',
    order_by='-modifiedDate',
    page=1,
    page_size=100,
)

res = s.account_balances.list(req)

if res.account_balances is not None:
    # handle response
    pass

Available Resources and Operations

account_balances

  • list - List account balances

accounts

  • get - Get account
  • list - List accounts

transaction_categories

  • get - Get transaction category
  • list - List transaction categories

transactions

Library generated by Speakeasy

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

codat-banking-0.28.0.tar.gz (20.2 kB view hashes)

Uploaded Source

Built Distribution

codat_banking-0.28.0-py3-none-any.whl (41.0 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