Skip to main content

What are Source Settings?

Source settings determine:
  • How a Source appears to your tenants
  • How you and your tenants authenticate to the Source
  • How Hotglue will run this Source

Example Source Settings

Understanding the Source Fields

tap

The tap field is a unique identifier for the source. It is used internally to reference the source and should be unique across all sources.

label

The label field is a human-readable name for the source. This is the name that will be displayed in the user interface.

icon

The icon field is a URL to an image that represents the source. This icon will be displayed in the user interface alongside the source’s label.

tags

The tags field is an array of strings that categorize the source. These tags can be used to filter and search for sources.

domain

The domain field specifies the primary domain associated with the source. This is typically the domain of the service the source integrates with.

type

The type field specifies the authentication method used by the source. Accepted values are oauth and api

isForked

The isForked field indicates whether this source has been modified from the default hotglue source settings.

validation_supported

The validation_supported field (boolean) indicates whether the connector validates a tenant’s credentials during account linking.

install_uri

The install_uri field can be used to overwrite the default git repo that the Tap will be installed from:
You can also override the install_uri for particular tenants by instead using:

is_private_repo

The is_private_repo field tells hotglue to use your configured git access token when installing your Tap.

formattable_fields

The formattable_fields flag allows you to set a list of config flags that can be used as variables for your auth URLs.
For example, if you set:
And the tenant has config:
then hotglue will use the following auth_url when completing the OAuth flow:
All fields specified in the connect_ui_params are used as formattable_fields by default.

version

The version field allows you to add a chip to the Widget UI that specifies the source version.
Versioning chips example

tap_url

The tap_url field specifies the OAuth authorization URL used to initiate the authentication flow for this source. This is the URL the tenant is redirected to when connecting the source.

auth_url

The auth_url field specifies the OAuth token exchange URL used to obtain access tokens after the tenant has authorized the source.

revoke_url

The revoke_url field specifies the URL called to revoke OAuth tokens when a tenant disconnects the source.

dynamic_urls

The dynamic_urls field allows the source to construct URLs dynamically at runtime using tenant-specific config values. When set to true, placeholders in tap_url and auth_url are replaced with values from the tenant’s config. For example, Amazon Advertising uses a region-specific URL selected by the tenant:
When a tenant selects EU, hotglue replaces {uri} with https://www.amazon.co.uk in the tap and auth URLs automatically.

flowType

The flowType field specifies how the source can be used across flows. When set to all, the source can be used in both tap and target flows.

no_fieldmap

The no_fieldmap field disables field mapping for this source.

disabled

The disabled field marks this source as disabled and unavailable for use.

connector_repo

The connector_repo field specifies the git repository URL for a hotglue-maintained tap. This field only works with hotglue-maintained repositories.

connector_tag

The connector_tag field specifies the version tag of a hotglue-maintained tap repository to install. This field only works with hotglue-maintained repositories.

connector_type

The connector_type field specifies the tap runtime type.

external_repo_url

The external_repo_url field specifies the URL to the external repository for airbyte-sourced taps.

unified_version

The unified_version field specifies the unified schema version used by this source.

basic_client_credentials

The basic_client_credentials field uses HTTP Basic Auth for client credentials instead of standard OAuth.

oauth_settings

The oauth_settings field contains advanced OAuth configuration for the source. The following sub-fields are supported:

connect_ui_params

The connect_ui_params field defines the fields shown to tenants in the connection UI. Each field key maps to a parameter object that supports the following properties: The following examples show fields using different property combinations:

connector_props

The connector_props field contains additional configuration properties for the tap. The following sub-fields are supported:

config

The config block defines default configuration values that are automatically applied to every new tenant connecting to this source. Tenants inherit these values without needing to configure them manually. The only universal config field supported across all sources is start_date. All other config fields are source-specific — refer to the individual source’s documentation for the full list of supported fields.