Metadata-Version: 2.1
Name: codat-commerce
Version: 0.16.3
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
Requires-Dist: certifi (==2022.12.7)
Requires-Dist: charset-normalizer (==2.1.1)
Requires-Dist: dataclasses-json-speakeasy (==0.5.8)
Requires-Dist: idna (==3.3)
Requires-Dist: marshmallow (==3.17.1)
Requires-Dist: marshmallow-enum (==1.5.1)
Requires-Dist: mypy-extensions (==0.4.3)
Requires-Dist: packaging (==21.3)
Requires-Dist: pyparsing (==3.0.9)
Requires-Dist: python-dateutil (==2.8.2)
Requires-Dist: requests (==2.28.1)
Requires-Dist: six (==1.16.0)
Requires-Dist: typing-inspect (==0.8.0)
Requires-Dist: typing-extensions (==4.3.0)
Requires-Dist: urllib3 (==1.26.12)
Requires-Dist: pylint (==2.16.2)

# Commerce API

Codat's Commerce API enables you to pull up-date-date commerce data from several leading payments, point-of-sale, and eCommerce systems.
You can view your SMB customers' products, orders, payments, payouts, disputes, and more - all standardized to our Commerce data model.

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

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

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

s = codatcommerce.CodatCommerce(
    security=shared.Security(
        auth_header="YOUR_API_KEY_HERE",
    ),
)

req = operations.GetCompanyInfoRequest(
    company_id='8a210b68-6988-11ed-a1eb-0242ac120002',
    connection_id='2e9d2c44-f675-40ba-8049-353bfcb5e171',
)

res = s.company_info.get(req)

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

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


### [company_info](docs/companyinfo/README.md)

* [get](docs/companyinfo/README.md#get) - Get company info

### [customers](docs/customers/README.md)

* [list](docs/customers/README.md#list) - List customers

### [disputes](docs/disputes/README.md)

* [list](docs/disputes/README.md#list) - List disputes

### [locations](docs/locations/README.md)

* [list](docs/locations/README.md#list) - List locations

### [orders](docs/orders/README.md)

* [list](docs/orders/README.md#list) - List orders

### [payments](docs/payments/README.md)

* [list](docs/payments/README.md#list) - List payments
* [list_methods](docs/payments/README.md#list_methods) - List payment methods

### [products](docs/products/README.md)

* [list](docs/products/README.md#list) - List products
* [list_categories](docs/products/README.md#list_categories) - List product categories

### [tax_components](docs/taxcomponents/README.md)

* [get](docs/taxcomponents/README.md#get) - List tax components

### [transactions](docs/transactions/README.md)

* [list](docs/transactions/README.md#list) - List transactions
<!-- End SDK Available Operations -->

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


