airbyte_create_destination
Define a data destination in Airbyte for writing to warehouses, databases, or data lakes, enabling automated pipeline provisioning.
Instructions
Create a new destination connector in Airbyte.
A destination defines where Airbyte writes data to (a warehouse, database, data lake, SaaS tool, etc.). Each destination type requires its own configuration schema.
When to Use: - Set up a brand-new data destination inside a workspace. - Automate provisioning of destinations for pipeline setup.
Recommended Workflow: 1. Call airbyte_list_destination_definitions to find the definition ID for the connector type you want. 2. Review an existing destination of the same type with airbyte_get_destination to understand the config structure. 3. Call this tool with the appropriate configuration.
Returns: The created destination details.
Examples: params = { "name": "Analytics Warehouse", "workspace_id": "a1b2c3d4-...", "definition_id": "22f6c74f-...", "configuration": { "destinationType": "bigquery", "project_id": "my-project", "dataset_id": "raw_data", "credentials_json": "..." } }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |