Metadata-Version: 2.1
Name: codat-commerce
Version: 0.7.0
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-commerce

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

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

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

s = codat.Codat(
    security=shared.Security(
        auth_header="YOUR_API_KEY_HERE",
    ),
)


req = operations.GetCommerceInfoRequest(
    company_id="8a210b68-6988-11ed-a1eb-0242ac120002",
    connection_id="2e9d2c44-f675-40ba-8049-353bfcb5e171",
)
    
res = s.company_info.get_commerce_info(req)

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

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


### company_info

* `get_commerce_info` - Get company info

### customers

* `list_commerce_customers` - List customers

### disputes

* `list_commerce_disputes` - List disputes

### locations

* `list_commerce_locations` - List locations

### orders

* `list_commerce_orders` - List orders

### payments

* `list_commerce_payment_methods` - List payment methods
* `list_commerce_payments` - List payments

### products

* `list_commerce_product_categories` - List product categories
* `list_commerce_products` - List products

### tax_components

* `get_companies_company_id_connections_connection_id_data_commerce_tax_components` - List tax components

### transactions

* `list_commerce_transactions` - List transactions
<!-- End SDK Available Operations -->

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


