Metadata-Version: 2.1
Name: codat-banking
Version: 0.1.1
Summary: Python Client SDK Generated by Speakeasy
Home-page: UNKNOWN
Author: Speakeasy
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# codat-banking

<!-- Start SDK Installation -->
## SDK Installation

```bash
pip install codat-banking
```
<!-- End SDK Installation -->

## SDK Example Usage
<!-- Start SDK Example Usage -->
```python
import codat
from codat.models import operations, shared

s = codat.Codat()
s.config_security(
    security=shared.Security(
        api_key="YOUR_API_KEY_HERE",
    )
)
   
req = operations.ListBankingAccountBalancesRequest(
    security=operations.ListBankingAccountBalancesSecurity(
        api_key="YOUR_API_KEY_HERE",
    ),
    path_params=operations.ListBankingAccountBalancesPathParams(
        company_id="unde",
        connection_id="deserunt",
    ),
    query_params=operations.ListBankingAccountBalancesQueryParams(
        order_by="porro",
        page=8442.66,
        page_size=6027.63,
        query="vero",
    ),
)
    
res = s.account_balances.list_banking_account_balances(req)

if res.links is not None:
    # handle response
```
<!-- End SDK Example Usage -->

<!-- Start SDK Available Operations -->
## SDK Available Operations


### account_balances

* `list_banking_account_balances` - List bank balances

### accounts

* `get_bank_account` - Get bank account
* `list_banking_accounts` - List bank accounts

### transaction_categories

* `get_bank_transaction_category` - Get transaction category
* `list_bank_transaction_categories` - List all transaction categories

### transactions

* `get_banking_transaction` - Get bank transaction
* `list_all_banking_transactions` - List banking transactions
* `list_banking_transactions` - List bank account transactions
<!-- End SDK Available Operations -->

### SDK Generated by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)


