Metadata-Version: 2.4
Name: airbyte-ai-greenhouse
Version: 0.17.2
Summary: Airbyte Greenhouse 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,greenhouse
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 Greenhouse AI Connector

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

## Installation

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

## Usage

```python
from airbyte_ai_greenhouse import GreenhouseConnector
from airbyte_ai_greenhouse.models import GreenhouseAuthConfig

# Create connector
connector = GreenhouseConnector(auth_config=GreenhouseAuthConfig(api_key="..."))

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

## Available Actions

### Candidates Actions
- `list_candidates()` - Returns a paginated list of all candidates in the organization
- `get_candidate()` - Get a single candidate by ID

### Applications Actions
- `list_applications()` - Returns a paginated list of all applications
- `get_application()` - Get a single application by ID

### Jobs Actions
- `list_jobs()` - Returns a paginated list of all jobs in the organization
- `get_job()` - Get a single job by ID

### Offers Actions
- `list_offers()` - Returns a paginated list of all offers
- `get_offer()` - Get a single offer by ID

### Users Actions
- `list_users()` - Returns a paginated list of all users
- `get_user()` - Get a single user by ID

### Departments Actions
- `list_departments()` - Returns a paginated list of all departments
- `get_department()` - Get a single department by ID

### Offices Actions
- `list_offices()` - Returns a paginated list of all offices
- `get_office()` - Get a single office by ID

### Job_Posts Actions
- `list_job_posts()` - Returns a paginated list of all job posts
- `get_job_post()` - Get a single job post by ID

### Sources Actions
- `list_sources()` - Returns a paginated list of all sources

### Scheduled_Interviews Actions
- `list_scheduled_interviews()` - Returns a paginated list of all scheduled interviews
- `get_scheduled_interview()` - Get a single scheduled interview by ID

### Application_Attachment Actions
- `download_application_attachment()` - Downloads an attachment (resume, cover letter, etc.) for an application by index.
The attachment URL is a temporary signed AWS S3 URL that expires within 7 days.
Files should be downloaded immediately after retrieval.


### Candidate_Attachment Actions
- `download_candidate_attachment()` - Downloads an attachment (resume, cover letter, etc.) for a candidate by index.
The attachment URL is a temporary signed AWS S3 URL that expires within 7 days.
Files should be downloaded immediately after retrieval.


## Type Definitions

All response types are fully typed using Pydantic models for IDE autocomplete support.
Import types from `airbyte_ai_greenhouse.types`.

## Documentation

Generated from OpenAPI 3.0 specification.

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

## Version Information

**Package Version:** 0.17.2

**Connector Version:** 0.1.0

**SDK Version:** 0.1.0