Metadata-Version: 2.1
Name: codat-platform
Version: 2.0.0
Summary: Manage the building blocks of Codat, including companies, connections, and more.
Home-page: UNKNOWN
Author: Codat
License: UNKNOWN
Description: # Platform
        
        <!-- Start Codat Library Description -->
        Manage the building blocks of Codat, including companies, connections, and more.
        <!-- End Codat Library Description -->
        
        <!-- Start SDK Installation -->
        ## SDK Installation
        
        ```bash
        pip install codat-platform
        ```
        <!-- End SDK Installation -->
        
        ## Example Usage
        <!-- Start SDK Example Usage -->
        ```python
        import codatplatform
        from codatplatform.models import shared
        
        s = codatplatform.CodatPlatform(
            security=shared.Security(
                auth_header="",
            ),
        )
        
        req = shared.CompanyRequestBody(
            description='Requested early access to the new financing scheme.',
            name='Bank of Dave',
        )
        
        res = s.companies.create(req)
        
        if res.company is not None:
            # handle response
            pass
        ```
        <!-- End SDK Example Usage -->
        
        <!-- Start SDK Available Operations -->
        ## Available Resources and Operations
        
        
        ### [companies](docs/sdks/companies/README.md)
        
        * [create](docs/sdks/companies/README.md#create) - Create company
        * [delete](docs/sdks/companies/README.md#delete) - Delete a company
        * [get](docs/sdks/companies/README.md#get) - Get company
        * [list](docs/sdks/companies/README.md#list) - List companies
        * [update](docs/sdks/companies/README.md#update) - Update company
        
        ### [connections](docs/sdks/connections/README.md)
        
        * [create](docs/sdks/connections/README.md#create) - Create connection
        * [delete](docs/sdks/connections/README.md#delete) - Delete connection
        * [get](docs/sdks/connections/README.md#get) - Get connection
        * [list](docs/sdks/connections/README.md#list) - List connections
        * [unlink](docs/sdks/connections/README.md#unlink) - Unlink connection
        * [update_authorization](docs/sdks/connections/README.md#update_authorization) - Update authorization
        
        ### [integrations](docs/sdks/integrations/README.md)
        
        * [get](docs/sdks/integrations/README.md#get) - Get integration
        * [get_branding](docs/sdks/integrations/README.md#get_branding) - Get branding
        * [list](docs/sdks/integrations/README.md#list) - List integrations
        
        ### [push_data](docs/sdks/pushdata/README.md)
        
        * [get_model_options](docs/sdks/pushdata/README.md#get_model_options) - Get push options
        * [get_operation](docs/sdks/pushdata/README.md#get_operation) - Get push operation
        * [list_operations](docs/sdks/pushdata/README.md#list_operations) - List push operations
        
        ### [refresh_data](docs/sdks/refreshdata/README.md)
        
        * [all](docs/sdks/refreshdata/README.md#all) - Refresh all data
        * [by_data_type](docs/sdks/refreshdata/README.md#by_data_type) - Refresh data type
        * [get](docs/sdks/refreshdata/README.md#get) - Get data status
        * [get_pull_operation](docs/sdks/refreshdata/README.md#get_pull_operation) - Get pull operation
        * [list_pull_operations](docs/sdks/refreshdata/README.md#list_pull_operations) - List pull operations
        
        ### [settings](docs/sdks/settings/README.md)
        
        * [create_api_key](docs/sdks/settings/README.md#create_api_key) - Create API key
        * [delete_api_key](docs/sdks/settings/README.md#delete_api_key) - Delete API key
        * [~~get_profile~~](docs/sdks/settings/README.md#get_profile) - Get profile :warning: **Deprecated**
        * [get_sync_settings](docs/sdks/settings/README.md#get_sync_settings) - Get sync settings
        * [list_api_keys](docs/sdks/settings/README.md#list_api_keys) - List API keys
        * [update_profile](docs/sdks/settings/README.md#update_profile) - Update profile
        * [update_sync_settings](docs/sdks/settings/README.md#update_sync_settings) - Update all sync settings
        
        ### [supplemental_data](docs/sdks/supplementaldata/README.md)
        
        * [configure](docs/sdks/supplementaldata/README.md#configure) - Configure
        * [get_configuration](docs/sdks/supplementaldata/README.md#get_configuration) - Get configuration
        
        ### [webhooks](docs/sdks/webhooks/README.md)
        
        * [create](docs/sdks/webhooks/README.md#create) - Create webhook
        * [get](docs/sdks/webhooks/README.md#get) - Get webhook
        * [list](docs/sdks/webhooks/README.md#list) - List webhooks
        <!-- End SDK Available Operations -->
        
        
        
        <!-- Start Dev Containers -->
        
        
        
        <!-- End Dev Containers -->
        
        <!-- Placeholder for Future Speakeasy SDK Sections -->
        
        
        ### Library generated by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
