Skip to main content

fused integrations

Manage OAuth connections to third-party services. Once connected, UDFs can access these services without handling credentials directly.

fused integrations [SUBCOMMAND] [OPTIONS]

Supported providers: airtable, google-drive (alias: gdrive), hubspot, notion, snowflake

fused integrations list

fused integrations list

fused integrations <provider> connect

Start an OAuth authorization flow. Opens a browser automatically in a terminal session.

fused integrations <provider> connect [OPTIONS]
FlagDescription
--open / --no-openOpen the authorization URL automatically (default: open)
fused integrations notion connect
fused integrations gdrive connect
fused integrations airtable connect --no-open # print URL only

Snowflake uses customer-owned OAuth clients and requires additional flags:

fused integrations snowflake connect [OPTIONS]
FlagDescription
--account-identifier TEXTSnowflake account identifier
--client-id TEXTOAuth client ID
--client-secret TEXTOAuth client secret
--client-secret-2 TEXTSecondary secret for key rotation
fused integrations snowflake connect \
--account-identifier myaccount \
--client-id myclientid \
--client-secret mysecret

fused integrations <provider> token

Print a short-lived access token for a connected provider.

fused integrations notion token
caution

This command prints a sensitive credential to stdout. Avoid logging or persisting the output.


fused integrations <provider> revoke

Disconnect a provider and remove stored tokens.

fused integrations notion revoke
fused integrations snowflake revoke

See also