From 7988d5f55bdaf76b5e4882acd66d463f0892980b Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 27 Jan 2026 22:37:26 +0000 Subject: [PATCH 1/3] docs: update source_config to replication_config in hosted tutorial Co-Authored-By: ian.alton@airbyte.io --- docs/ai-agents/quickstarts/tutorial-hosted.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ai-agents/quickstarts/tutorial-hosted.md b/docs/ai-agents/quickstarts/tutorial-hosted.md index dee54e2cfa93..77a9154db0fa 100644 --- a/docs/ai-agents/quickstarts/tutorial-hosted.md +++ b/docs/ai-agents/quickstarts/tutorial-hosted.md @@ -86,7 +86,7 @@ Once you have a scoped token, create a connector with your API credentials. Airb - Additional configuration fields that may or may not be mandatory, depending on the source. If applicable, these fields are explained in the reference docs for your connector. - - `source_config`: Connector-specific configurations for direct connectors. + - `replication_config`: Connector-specific configurations for the connector. - `credentials`: Authentication information for your connector. @@ -101,7 +101,7 @@ curl -X POST "https://api.airbyte.ai/api/v1/integrations/connectors" \ -d '{ "connector_type": "github", "external_user_id": "", - "source_config": {"repositories": "airbytehq/airbyte"}, + "replication_config": {"repositories": "airbytehq/airbyte"}, "credentials": {"token": ""} }' ``` From e9dd12f3cb389b83c8b03b0f2741cbe01533199f Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 27 Jan 2026 23:32:27 +0000 Subject: [PATCH 2/3] docs: fix connector config field names - use environment for connector config Co-Authored-By: ian.alton@airbyte.io --- docs/ai-agents/quickstarts/tutorial-hosted.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ai-agents/quickstarts/tutorial-hosted.md b/docs/ai-agents/quickstarts/tutorial-hosted.md index 77a9154db0fa..99d39de6f569 100644 --- a/docs/ai-agents/quickstarts/tutorial-hosted.md +++ b/docs/ai-agents/quickstarts/tutorial-hosted.md @@ -86,11 +86,11 @@ Once you have a scoped token, create a connector with your API credentials. Airb - Additional configuration fields that may or may not be mandatory, depending on the source. If applicable, these fields are explained in the reference docs for your connector. - - `replication_config`: Connector-specific configurations for the connector. - - `credentials`: Authentication information for your connector. - - `environment`: Connector-specific configurations for replication connectors. + - `environment`: Connector-specific configurations for the connector. + + - `replication_config`: Optional replication-specific settings like `start_date`, `lookback_window`, etc. This is what the request looks like when you're using a personal access token. See more examples in the [authentication docs](/ai-agents/connectors/github/AUTH). @@ -101,7 +101,7 @@ curl -X POST "https://api.airbyte.ai/api/v1/integrations/connectors" \ -d '{ "connector_type": "github", "external_user_id": "", - "replication_config": {"repositories": "airbytehq/airbyte"}, + "environment": {"repositories": "airbytehq/airbyte"}, "credentials": {"token": ""} }' ``` From d8996d8e1cb3e5f520f1a8b226f2712bfdf88c42 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 28 Jan 2026 00:15:33 +0000 Subject: [PATCH 3/3] docs: remove replication_config line per review feedback Co-Authored-By: ian.alton@airbyte.io --- docs/ai-agents/quickstarts/tutorial-hosted.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/ai-agents/quickstarts/tutorial-hosted.md b/docs/ai-agents/quickstarts/tutorial-hosted.md index 99d39de6f569..1f61227ac563 100644 --- a/docs/ai-agents/quickstarts/tutorial-hosted.md +++ b/docs/ai-agents/quickstarts/tutorial-hosted.md @@ -90,8 +90,6 @@ Once you have a scoped token, create a connector with your API credentials. Airb - `environment`: Connector-specific configurations for the connector. - - `replication_config`: Optional replication-specific settings like `start_date`, `lookback_window`, etc. - This is what the request looks like when you're using a personal access token. See more examples in the [authentication docs](/ai-agents/connectors/github/AUTH). ```bash title="Request"