Metadata-Version: 2.4
Name: airbyte-ai-hubspot
Version: 0.15.1
Summary: Airbyte Hubspot Connector for AI platforms
Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
Project-URL: Repository, https://github.com/airbytehq/airbyte-embedded
Project-URL: Issues, https://github.com/airbytehq/airbyte-embedded/issues
Author-email: Airbyte <contact@airbyte.io>
License: Elastic-2.0
Keywords: airbyte,api,connector,hubspot
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: httpx>=0.24.0
Requires-Dist: jinja2>=3.0.0
Requires-Dist: jsonpath-ng>=1.6.1
Requires-Dist: jsonref>=1.1.0
Requires-Dist: opentelemetry-api>=1.37.0
Requires-Dist: opentelemetry-sdk>=1.37.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: segment-analytics-python>=2.2.0
Description-Content-Type: text/markdown

# Airbyte Hubspot AI Connector

Type-safe Hubspot API connector with full IDE autocomplete support for AI applications.

**Package Version:** 0.15.1

**Connector Version:** 0.1.1

**SDK Version:** 0.1.0

## Installation

```bash
uv pip install airbyte-ai-hubspot
```

## Usage

```python
from airbyte_ai_hubspot import HubspotConnector
from airbyte_ai_hubspot.models import HubspotAuthConfig

# Create connector
connector = HubspotConnector(auth_config=HubspotAuthConfig(client_id="...", client_secret="...", refresh_token="...", access_token="..."))

# Use typed methods with full IDE autocomplete
# (See Available Operations below for all methods)
```

## Available Operations

### Contacts Operations
- `list_contacts()` - Returns a paginated list of contacts
- `get_contact()` - Get a single contact by ID
- `search_contacts()` - Search for contacts by filtering on properties, searching through associations, and sorting results.

### Companies Operations
- `list_companies()` - Retrieve all companies, using query parameters to control the information that gets returned.
- `get_company()` - Get a single company by ID
- `search_companies()` - Search for companies by filtering on properties, searching through associations, and sorting results.

### Deals Operations
- `list_deals()` - Returns a paginated list of deals
- `get_deal()` - Get a single deal by ID
- `search_deals()` - Search deals with filters and sorting

### Tickets Operations
- `list_tickets()` - Returns a paginated list of tickets
- `get_ticket()` - Get a single ticket by ID
- `search_tickets()` - Search for tickets by filtering on properties, searching through associations, and sorting results.

### Schemas Operations
- `list_schemas()` - Returns all custom object schemas to discover available custom objects
- `get_schema()` - Get the schema for a specific custom object type

### Objects Operations
- `list_objects()` - Read a page of objects. Control what is returned via the properties query param.
- `get_object()` - Read an Object identified by {objectId}. {objectId} refers to the internal object ID by default, or optionally any unique property value as specified by the idProperty query param. Control what is returned via the properties query param.

## Type Definitions

All response types are fully typed using TypedDict for IDE autocomplete support.
Import types from `airbyte_ai_hubspot.types`.

## Documentation

Generated from OpenAPI 3.0 specification.

For API documentation, see the service's official API docs.
