Skip to main content
PUT
/
api
/
integration-sources
/
{source_id}
Update Integration Source
curl --request PUT \
  --url https://config.heyhumm.ai/api/integration-sources/{source_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "configuration": {},
  "capabilities": [
    "<string>"
  ],
  "is_active": true,
  "connection_status": "connected",
  "last_connection_test": "2023-11-07T05:31:56Z",
  "legacy_data_source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "system_source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "instance_label": "<string>",
  "airbyte_source_id": "<string>",
  "airbyte_connection_id": "<string>",
  "airbyte_connection_ids": [
    "<string>"
  ],
  "airbyte_destination_id": "<string>",
  "last_sync_at": "2023-11-07T05:31:56Z",
  "last_sync_status": "<string>",
  "last_sync_row_count": 123,
  "selected_streams": [
    "<string>"
  ],
  "description_source": "ai_generated",
  "description_generated_at": "2023-11-07T05:31:56Z",
  "description_version": 123
}
'
{
  "name": "<string>",
  "source_type": "database",
  "connector_type": "<string>",
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "description_version": 123,
  "description": "<string>",
  "is_system": false,
  "is_sync": false,
  "configuration": {},
  "capabilities": [
    "<string>"
  ],
  "is_active": true,
  "connection_status": "unknown",
  "last_connection_test": "2023-11-07T05:31:56Z",
  "legacy_data_source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "system_source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "instance_label": "<string>",
  "airbyte_source_id": "<string>",
  "airbyte_connection_id": "<string>",
  "airbyte_connection_ids": [
    "<string>"
  ],
  "airbyte_destination_id": "<string>",
  "last_sync_at": "2023-11-07T05:31:56Z",
  "last_sync_status": "<string>",
  "last_sync_row_count": 123,
  "selected_streams": [
    "<string>"
  ],
  "description_source": "ai_generated",
  "description_generated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://heyhumm.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

source_id
string<uuid> | null
required

Query Parameters

organization_id
string<uuid> | null
resource_id
string<uuid> | null
integration_source_id
string<uuid> | null
data_source_id
string<uuid> | null
context_source_id
string<uuid> | null
job_id
string<uuid> | null

Body

application/json

Model for updating an integration source.

name
string | null
description
string | null
configuration
Configuration · object
capabilities
string[] | null
is_active
boolean | null
connection_status
enum<string> | null

Status of the integration source connection.

Available options:
connected,
disconnected,
error,
unknown
last_connection_test
string<date-time> | null
legacy_data_source_id
string<uuid> | null
system_source_id
string<uuid> | null
instance_label
string | null
airbyte_source_id
string | null
airbyte_connection_id
string | null
airbyte_connection_ids
string[] | null
airbyte_destination_id
string | null
last_sync_at
string<date-time> | null
last_sync_status
string | null
last_sync_row_count
integer | null
selected_streams
string[] | null
description_source
enum<string> | null
Available options:
ai_generated,
manual_edit,
imported,
information_schema
description_generated_at
string<date-time> | null
description_version
integer | null

Response

Successful Response

Response model for integration sources (excludes sensitive data).

name
string
required

Display name for the integration source

source_type
enum<string>
required

Type of source (database or saas)

Available options:
database,
saas
connector_type
string
required

Specific connector type (e.g., postgresql, mysql, hubspot)

organization_id
string<uuid>
required

Organization that owns this integration source

id
string<uuid>
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
description_version
integer
required
description
string | null

Optional description for the integration source

is_system
boolean
default:false

Whether this is a system-managed source (e.g., Athena backing store)

is_sync
boolean
default:false

Whether this is an Airbyte-backed sync connector

configuration
Configuration · object

Non-sensitive configuration data

capabilities
string[]

List of capabilities supported by this source

is_active
boolean
default:true

Whether this integration source is active

connection_status
enum<string>
default:unknown

Current connection status

Available options:
connected,
disconnected,
error,
unknown
last_connection_test
string<date-time> | null

Timestamp of last connection test

legacy_data_source_id
string<uuid> | null

ID of the legacy data source this integration source was migrated from

system_source_id
string<uuid> | null

ID of the backing system source (e.g., Athena) for introspection routing

instance_label
string | null

Short label for tool name disambiguation (e.g., 'US', 'CA'). Forced uppercase. Required when multiple instances of the same connector type exist.

Maximum string length: 20
airbyte_source_id
string | null

Airbyte Cloud source ID

airbyte_connection_id
string | null

Airbyte Cloud connection ID

airbyte_connection_ids
string[] | null

Airbyte Cloud connection IDs (one per stream group)

airbyte_destination_id
string | null

Org-specific Airbyte destination ID

last_sync_at
string<date-time> | null

Last successful Airbyte sync time

last_sync_status
string | null

Airbyte sync status: success, failed, running, auth_required, configuring

last_sync_row_count
integer | null

Rows synced in last Airbyte job

selected_streams
string[] | null

User-selected stream names to sync. None = sync all (backward compat).

description_source
enum<string> | null

How description was created: 'ai_generated' | 'manual_edit' | 'imported' | 'information_schema'

Available options:
ai_generated,
manual_edit,
imported,
information_schema
description_generated_at
string<date-time> | null

When description was last modified