airbyte_update_connection
Modify any aspect of an Airbyte connection with partial updates: change schedule, enable/disable, adjust streams, or update namespace settings.
Instructions
Update an existing connection's configuration.
Uses PATCH semantics: only the fields you provide are changed.
When to Use: - Change a connection's schedule (e.g. from daily to hourly). - Enable/disable a connection by changing its status. - Add or remove streams from the sync. - Update namespace or prefix settings.
Recommended Workflow: 1. Call airbyte_get_connection to see the current configuration. 2. Build the update payload with only the fields to change. 3. Call this tool.
Returns: The updated connection details.
Examples: Pause a connection: params = { "connection_id": "...", "status": "inactive" } Change schedule: params = { "connection_id": "...", "schedule": { "scheduleType": "basic", "basicTiming": "Every 6 hours" } }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |