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]
| Flag | Description |
|---|---|
--open / --no-open | Open 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]
| Flag | Description |
|---|---|
--account-identifier TEXT | Snowflake account identifier |
--client-id TEXT | OAuth client ID |
--client-secret TEXT | OAuth client secret |
--client-secret-2 TEXT | Secondary 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
- Integrations & Secrets — manage integrations and view connection status in the Workbench UI
- Connecting to Data — connect to databases and external data sources from UDFs