airbyte_update_source
Update an Airbyte source connector's name or configuration by providing only the fields to change. Use to rotate credentials, rename sources, or adjust settings.
Instructions
Update an existing source connector's name or configuration.
Uses PATCH semantics: only the fields you provide are changed. The configuration object is merged at the top level by the API.
When to Use: - Change connection credentials (e.g. rotate a password). - Rename a source for clarity. - Update connector settings (e.g. change replication slot).
Recommended Workflow: 1. Call airbyte_get_source to see the current configuration. 2. Build the updated configuration with only the changed fields. 3. Call this tool.
Returns: The updated source details.
Examples: Rename a source: params = { "source_id": "a1b2c3d4-...", "name": "New Name" } Update configuration: params = { "source_id": "a1b2c3d4-...", "configuration": { "password": "new-secret" } }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |