Managing Resources With the Fivetran CLI Beta The Fivetran command-line interface (CLI) lets you manage your Fivetran account from the terminal. Supported operations include creating and updating connections, controlling schema settings, managing users and teams, deploying custom connectors, and more.
Prerequisites Install the Fivetran CLI Install the CLI with pip:python3 -m pip install -U fivetran-cli
Verify the installation:fivetran --help
fivetran beta connection list --help
Authenticate The CLI reads your API key from the FIVETRAN_API_KEY environment variable. Set it to the Base64-encoded api_key:api_secret value:
export FIVETRAN_API_KEY="<base64(api_key:api_secret)>"
You can also pass the key directly in any command using the --api-key flag:
fivetran beta connection list --api-key "$FIVETRAN_API_KEY "
For more information, see our scoped API key documentation .
Fivetran CLI commands Fivetran CLI commands have the following format:
fivetran beta <resource> <operation> [arguments] [options]
For example, fivetran beta destination list and fivetran beta connection get --connection-id <connection_id>.
The following sections list supported commands and operations under fivetran beta:
fivetran beta accountSupported operations for fivetran beta account Operation Description Auth Paginated Config body Destructive getGet Account Info from the API Key Yes No No No
Operation Usage getfivetran beta account get
fivetran beta certificate connectionSupported operations for fivetran beta certificate connection Operation Description Auth Paginated Config body Destructive listList Certificates Approved for the Connection Yes Yes No No getRetrieve Connection Certificate Details Yes No No No revokeRevoke Connection Certificate Yes No No Yes approveApprove a Certificate for the Connection Yes No Yes No
Operation Usage listfivetran beta certificate connection list --connection-id <connection-id>getfivetran beta certificate connection get --connection-id <connection-id> --hash <hash>revokefivetran beta certificate connection revoke --connection-id <connection-id> --hash <hash>approvefivetran beta certificate connection approve --connection-id <connection-id> --config <json>
fivetran beta certificate destinationSupported operations for fivetran beta certificate destination Operation Description Auth Paginated Config body Destructive listList Certificates Approved for the Destination Yes Yes No No getRetrieve Destination Certificate Details Yes No No No revokeRevoke Destination Certificate Yes No No Yes approveApprove a Certificate for the Destination Yes No Yes No
Operation Usage listfivetran beta certificate destination list --destination-id <destination-id>getfivetran beta certificate destination get --destination-id <destination-id> --hash <hash>revokefivetran beta certificate destination revoke --destination-id <destination-id> --hash <hash>approvefivetran beta certificate destination approve --destination-id <destination-id> --config <json>
fivetran beta connectionSupported operations for fivetran beta connection Operation Description Auth Paginated Config body Destructive listList All Connections Yes Yes No No getRetrieve Connection Details Yes No No No createCreate a Connection Yes No Yes No updateUpdate a Connection Yes No Yes No deleteDelete a Connection Yes No No Yes syncSync Connection Data Yes No Yes No resyncRe-sync Connection Data (Historical Sync) Yes No Yes Yes testRun Connection Setup Tests Yes No Yes No
Operation Usage listfivetran beta connection listgetfivetran beta connection get --connection-id <connection-id>createfivetran beta connection create --config <json>updatefivetran beta connection update --connection-id <connection-id> --config <json>deletefivetran beta connection delete --connection-id <connection-id>syncfivetran beta connection sync --connection-id <connection-id> --config <json>resyncfivetran beta connection resync --connection-id <connection-id> --config <json>testfivetran beta connection test --connection-id <connection-id> --config <json>
fivetran beta connection-schemaSupported operations for fivetran beta connection-schema Operation Description Auth Paginated Config body Destructive getRetrieve a Connection Schema Config Yes No No No setupSet Up a New Connection Schema Config Yes No Yes No updateUpdate a Connection Schema Config Yes No Yes No resync-tableRe-sync Connection Table Data Yes No Yes Yes reloadReload a Connection Schema Config Yes No Yes Yes
Operation Usage getfivetran beta connection-schema get --connection-id <connection-id>setupfivetran beta connection-schema setup --connection-id <connection-id> --config <json>updatefivetran beta connection-schema update --connection-id <connection-id> --config <json>resync-tablefivetran beta connection-schema resync-table --connection-id <connection-id> --config <json>reloadfivetran beta connection-schema reload --connection-id <connection-id> --config <json>
fivetran beta connection-schema columnSupported operations for fivetran beta connection-schema column Operation Description Auth Paginated Config body Destructive listRetrieve Source Table Columns Config Yes No No No updateUpdate a Connection Column Config Yes No Yes No dropDrop a Blocked Column From the Destination Yes No No Yes drop-blockedDrop Blocked Columns from the Destination. Yes No Yes Yes
Operation Usage listfivetran beta connection-schema column list --connection-id <connection-id> --schema <schema> --table <table>updatefivetran beta connection-schema column update --connection-id <connection-id> --schema-name <schema-name> --table-name <table-name> --column-name <column-name> --config <json>dropfivetran beta connection-schema column drop --connection-id <connection-id> --schema-name <schema-name> --table-name <table-name> --column-name <column-name>drop-blockedfivetran beta connection-schema column drop-blocked --connection-id <connection-id> --config <json>
fivetran beta connection-schema schemaSupported operations for fivetran beta connection-schema schema Operation Description Auth Paginated Config body Destructive updateUpdate a Connection Database Schema Config Yes No Yes No
Operation Usage updatefivetran beta connection-schema schema update --connection-id <connection-id> --schema-name <schema-name> --config <json>
fivetran beta connection-schema tableSupported operations for fivetran beta connection-schema table Operation Description Auth Paginated Config body Destructive updateUpdate a Connection Table Config Yes No Yes No
Operation Usage updatefivetran beta connection-schema table update --connection-id <connection-id> --schema-name <schema-name> --table-name <table-name> --config <json>
fivetran beta connectionsSupported operations for fivetran beta connections Operation Description Auth Paginated Config body Destructive connection-moved-job-statusRetrieve Move Connection Job Status Yes No No No connection-warningsRetrieve Connection Warnings Yes No No No
Operation Usage connection-moved-job-statusfivetran beta connections connection-moved-job-status --connection-id <connection-id> --job-id <job-id>connection-warningsfivetran beta connections connection-warnings --connection-id <connection-id>
Supported operations for fivetran beta connector-metadata Operation Description Auth Paginated Config body Destructive listRetrieve Source Metadata Yes Yes No No getRetrieve Connector Configuration Metadata Yes No No No
Operation Usage listfivetran beta connector-metadata listgetfivetran beta connector-metadata get --service <service>
fivetran beta connector-sdk-packageSupported operations for fivetran beta connector-sdk-package Operation Description Auth Paginated Config body Destructive listList All Connector SDK Packages Yes Yes No No getRetrieve Connector SDK Package Details Yes No No No deleteDelete Connector SDK Package Yes No No Yes
Operation Usage listfivetran beta connector-sdk-package listgetfivetran beta connector-sdk-package get --package_id <package_id>deletefivetran beta connector-sdk-package delete --package_id <package_id>
fivetran beta destinationSupported operations for fivetran beta destination Operation Description Auth Paginated Config body Destructive listList All Destinations Within Account Yes Yes No No getRetrieve Destination Details Yes No No No createCreate a Destination Yes No Yes No updateUpdate a Destination Yes No Yes No deleteDelete a Destination Yes No No Yes testRun Destination Setup Tests Yes No Yes No
Operation Usage listfivetran beta destination listgetfivetran beta destination get --destination-id <destination-id>createfivetran beta destination create --config <json>updatefivetran beta destination update --destination-id <destination-id> --config <json>deletefivetran beta destination delete --destination-id <destination-id>testfivetran beta destination test --destination-id <destination-id> --config <json>
fivetran beta fingerprint connectionSupported operations for fivetran beta fingerprint connection Operation Description Auth Paginated Config body Destructive listList Fingerprints Approved for the Connection Yes Yes No No getRetrieve Connection Fingerprint Details Yes No No No revokeRevoke Connection Fingerprint Yes No No Yes approveApprove a Fingerprint for the Connection Yes No Yes No
Operation Usage listfivetran beta fingerprint connection list --connection-id <connection-id>getfivetran beta fingerprint connection get --connection-id <connection-id> --hash <hash>revokefivetran beta fingerprint connection revoke --connection-id <connection-id> --hash <hash>approvefivetran beta fingerprint connection approve --connection-id <connection-id> --config <json>
fivetran beta fingerprint destinationSupported operations for fivetran beta fingerprint destination Operation Description Auth Paginated Config body Destructive listList Fingerprints Approved for the Destination Yes Yes No No getRetrieve Destination Fingerprint Details Yes No No No revokeRevoke Destination Fingerprint Yes No No Yes approveApprove a Fingerprint for the Destination Yes No Yes No
Operation Usage listfivetran beta fingerprint destination list --destination-id <destination-id>getfivetran beta fingerprint destination get --destination-id <destination-id> --hash <hash>revokefivetran beta fingerprint destination revoke --destination-id <destination-id> --hash <hash>approvefivetran beta fingerprint destination approve --destination-id <destination-id> --config <json>
fivetran beta groupSupported operations for fivetran beta group Operation Description Auth Paginated Config body Destructive listList All Destinations within Account Yes Yes No No getRetrieve Group Details Yes No No No createCreate a Group Yes No Yes No updateUpdate a Group Yes No Yes No deleteDelete a Group Yes No No Yes
Operation Usage listfivetran beta group listgetfivetran beta group get --group-id <group-id>createfivetran beta group create --config <json>updatefivetran beta group update --group-id <group-id> --config <json>deletefivetran beta group delete --group-id <group-id>
fivetran beta group connectionSupported operations for fivetran beta group connection Operation Description Auth Paginated Config body Destructive listList All Connections within a Group Yes Yes No No
Operation Usage listfivetran beta group connection list --group-id <group-id>
fivetran beta group public-keySupported operations for fivetran beta group public-key Operation Description Auth Paginated Config body Destructive getRetrieve Group Public SSH Key Yes No No No
Operation Usage getfivetran beta group public-key get --group-id <group-id>
fivetran beta group service-accountSupported operations for fivetran beta group service-account Operation Description Auth Paginated Config body Destructive getRetrieve Group Service Account Yes No No No
Operation Usage getfivetran beta group service-account get --group-id <group-id>
fivetran beta group userSupported operations for fivetran beta group user Operation Description Auth Paginated Config body Destructive listList All Users within a Group Yes Yes No No addAdd a User to a Group Yes No Yes No removeRemove a User from a Group Yes No No Yes
Operation Usage listfivetran beta group user list --group-id <group-id>addfivetran beta group user add --group-id <group-id> --config <json>removefivetran beta group user remove --group-id <group-id> --user-id <user-id>
fivetran beta hybrid-deployment-agentSupported operations for fivetran beta hybrid-deployment-agent Operation Description Auth Paginated Config body Destructive listList Hybrid Deployment Agents Yes Yes No No getReturns Hybrid Deployment Agent Details Yes No No No createCreate a Hybrid Deployment Agent Yes No Yes No deleteDelete a Hybrid Deployment Agent Yes No No Yes regenerate-authRegenerate Authentication Keys Yes No Yes Yes reset-credentialsReset Agent Credentials Yes No No Yes
Operation Usage listfivetran beta hybrid-deployment-agent listgetfivetran beta hybrid-deployment-agent get --agent-id <agent-id>createfivetran beta hybrid-deployment-agent create --config <json>deletefivetran beta hybrid-deployment-agent delete --agent-id <agent-id>regenerate-authfivetran beta hybrid-deployment-agent regenerate-auth --agent-id <agent-id> --config <json>reset-credentialsfivetran beta hybrid-deployment-agent reset-credentials --agent-id <agent-id>
fivetran beta log-service accountSupported operations for fivetran beta log-service account Operation Description Auth Paginated Config body Destructive listList All Log Services within Account Yes Yes No No getRetrieve Account Log Service Yes No No No createCreate Account Log Service Yes No Yes No updateUpdate Account Log Service Yes No Yes No deleteDelete Account Log Service Yes No No Yes testRun Account Log Service Setup Tests Yes No No No
Operation Usage listfivetran beta log-service account listgetfivetran beta log-service account getcreatefivetran beta log-service account create --config <json>updatefivetran beta log-service account update --config <json>deletefivetran beta log-service account deletetestfivetran beta log-service account test
fivetran beta log-service groupSupported operations for fivetran beta log-service group Operation Description Auth Paginated Config body Destructive getRetrieve Group Log Service Details Yes No No No createCreate a Group Log Service Yes No Yes No updateUpdate a Group Log Service Yes No Yes No deleteDelete a Group Log Service Yes No No Yes testRun Group Log Service Setup Tests Yes No No No
Operation Usage getfivetran beta log-service group get --log-id <log-id>createfivetran beta log-service group create --config <json>updatefivetran beta log-service group update --log-id <log-id> --config <json>deletefivetran beta log-service group delete --log-id <log-id>testfivetran beta log-service group test --log-id <log-id>
fivetran beta private-linkSupported operations for fivetran beta private-link Operation Description Auth Paginated Config body Destructive listList All Private Links Yes Yes No No getRetrieve Private Link Details Yes No No No createCreate a Private Link Yes No Yes No updateUpdate a Private Link Yes No Yes No deleteDelete a Private Link Yes No No Yes
Operation Usage listfivetran beta private-link listgetfivetran beta private-link get --private-link-id <private-link-id>createfivetran beta private-link create --config <json>updatefivetran beta private-link update --private-link-id <private-link-id> --config <json>deletefivetran beta private-link delete --private-link-id <private-link-id>
fivetran beta proxy-agentSupported operations for fivetran beta proxy-agent Operation Description Auth Paginated Config body Destructive listList all Proxy Agents Yes Yes No No getRetrieve Proxy Agent Details Yes No No No createCreate a Proxy Agent Yes No Yes No deleteDelete a Proxy Agent Yes No No Yes regenerate-secretsRegenerate Secrets for Proxy Agent Yes No No Yes
Operation Usage listfivetran beta proxy-agent listgetfivetran beta proxy-agent get --agent-id <agent-id>createfivetran beta proxy-agent create --config <json>deletefivetran beta proxy-agent delete --agent-id <agent-id>regenerate-secretsfivetran beta proxy-agent regenerate-secrets --agent-id <agent-id>
fivetran beta proxy-agent connectionSupported operations for fivetran beta proxy-agent connection Operation Description Auth Paginated Config body Destructive listList All Connections Attached to the Proxy Agent Yes Yes No No
Operation Usage listfivetran beta proxy-agent connection list --agent-id <agent-id>
fivetran beta public-connectorSupported operations for fivetran beta public-connector Operation Description Auth Paginated Config body Destructive listRetrieve Source Metadata Public Endpoint No No No No
Operation Usage listfivetran beta public-connector list
fivetran beta roleSupported operations for fivetran beta role Operation Description Auth Paginated Config body Destructive listList all roles Yes Yes No No
Operation Usage listfivetran beta role list
fivetran beta system-keySupported operations for fivetran beta system-key Operation Description Auth Paginated Config body Destructive listList All System Keys Yes Yes No No getRetrieve System Key Details Yes No No No createCreate a System Key Yes No Yes No updateUpdate a System Key Yes No Yes No deleteDelete a System Key Yes No No Yes rotateRotate a System Key Yes No Yes Yes
Operation Usage listfivetran beta system-key listgetfivetran beta system-key get --key-id <key-id>createfivetran beta system-key create --config <json>updatefivetran beta system-key update --key-id <key-id> --config <json>deletefivetran beta system-key delete --key-id <key-id>rotatefivetran beta system-key rotate --key-id <key-id> --config <json>
fivetran beta teamSupported operations for fivetran beta team Operation Description Auth Paginated Config body Destructive listList All Teams Yes Yes No No getRetrieve Team Details Yes No No No createCreate a Team Yes No Yes No updateUpdate a Team Yes No Yes No deleteDelete a Team Yes No No Yes
Operation Usage listfivetran beta team listgetfivetran beta team get --team-id <team-id>createfivetran beta team create --config <json>updatefivetran beta team update --team-id <team-id> --config <json>deletefivetran beta team delete --team-id <team-id>
fivetran beta team account-roleSupported operations for fivetran beta team account-role Operation Description Auth Paginated Config body Destructive removeDelete Team from Account Yes No No Yes
Operation Usage removefivetran beta team account-role remove --team-id <team-id>
fivetran beta team connectionSupported operations for fivetran beta team connection Operation Description Auth Paginated Config body Destructive listList All Connection Memberships Yes Yes No No getRetrieve Connection Membership Yes No No No addAdd Connection Membership Yes No Yes No updateUpdate Connection Membership Yes No Yes No removeDelete Connection Membership Yes No No Yes
Operation Usage listfivetran beta team connection list --team-id <team-id>getfivetran beta team connection get --team-id <team-id> --connection-id <connection-id>addfivetran beta team connection add --team-id <team-id> --config <json>updatefivetran beta team connection update --team-id <team-id> --connection-id <connection-id> --config <json>removefivetran beta team connection remove --team-id <team-id> --connection-id <connection-id>
fivetran beta team groupSupported operations for fivetran beta team group Operation Description Auth Paginated Config body Destructive listList All Group Memberships Yes Yes No No getRetrieve Group Membership Details Yes No No No addAdd Group Membership Yes No Yes No updateUpdate Group Membership Yes No Yes No removeDelete Group Membership Yes No No Yes
Operation Usage listfivetran beta team group list --team-id <team-id>getfivetran beta team group get --team-id <team-id> --group-id <group-id>addfivetran beta team group add --team-id <team-id> --config <json>updatefivetran beta team group update --team-id <team-id> --group-id <group-id> --config <json>removefivetran beta team group remove --team-id <team-id> --group-id <group-id>
fivetran beta team userSupported operations for fivetran beta team user Operation Description Auth Paginated Config body Destructive listList All User Memberships Yes Yes No No getRetrieve User Membership in a Team Yes No No No addAdd a User to the Team Yes No Yes No updateUpdate a User Membership Yes No Yes No removeDelete a User from a Team Yes No No Yes
Operation Usage listfivetran beta team user list --team-id <team-id>getfivetran beta team user get --team-id <team-id> --user-id <user-id>addfivetran beta team user add --team-id <team-id> --config <json>updatefivetran beta team user update --team-id <team-id> --user-id <user-id> --config <json>removefivetran beta team user remove --team-id <team-id> --user-id <user-id>
Supported operations for fivetran beta transformation Operation Description Auth Paginated Config body Destructive listList all Transformations Yes Yes No No getRetrieve Transformation Details Yes No No No createCreate a Transformation Yes No Yes No updateUpdate a Transformation Yes No Yes No deleteDelete a Transformation Yes No No Yes runRun Transformation Yes No Yes No cancelCancel Running Transformation Yes No No Yes upgradeUpgrade Transformation Package Yes No No Yes
Operation Usage listfivetran beta transformation listgetfivetran beta transformation get --transformation-id <transformation-id>createfivetran beta transformation create --config <json>updatefivetran beta transformation update --transformation-id <transformation-id> --config <json>deletefivetran beta transformation delete --transformation-id <transformation-id>runfivetran beta transformation run --transformation-id <transformation-id> --config <json>cancelfivetran beta transformation cancel --transformation-id <transformation-id>upgradefivetran beta transformation upgrade --transformation-id <transformation-id>
Supported operations for fivetran beta transformation package-metadata Operation Description Auth Paginated Config body Destructive listList All Quickstart Package Metadata Yes Yes No No getRetrieve a Quickstart Package Metadata Details Yes No No No
Operation Usage listfivetran beta transformation package-metadata listgetfivetran beta transformation package-metadata get --package_definition_id <package_definition_id>
Supported operations for fivetran beta transformation-project Operation Description Auth Paginated Config body Destructive listList all Transformation Projects Yes Yes No No getRetrieve Transformation Project Details Yes No No No createCreate Transformation Project Yes No Yes No updateUpdate Transformation Project Yes No Yes No deleteDelete Transformation Project Yes No No Yes testTest Transformation Project Yes No No No
Operation Usage listfivetran beta transformation-project listgetfivetran beta transformation-project get --project-id <project-id>createfivetran beta transformation-project create --config <json>updatefivetran beta transformation-project update --project-id <project-id> --config <json>deletefivetran beta transformation-project delete --project-id <project-id>testfivetran beta transformation-project test --project-id <project-id>
fivetran beta userSupported operations for fivetran beta user Operation Description Auth Paginated Config body Destructive listList All Users Yes Yes No No getRetrieve User Details Yes No No No inviteInvite a User Yes No Yes No updateUpdate a User Yes No Yes No deleteDelete a User Yes No No Yes
Operation Usage listfivetran beta user listgetfivetran beta user get --user-id <user-id>invitefivetran beta user invite --config <json>updatefivetran beta user update --user-id <user-id> --config <json>deletefivetran beta user delete --id <id>
fivetran beta user account-roleSupported operations for fivetran beta user account-role Operation Description Auth Paginated Config body Destructive removeDelete Account Role Yes No No Yes
Operation Usage removefivetran beta user account-role remove --user-id <user-id>
fivetran beta user connectionSupported operations for fivetran beta user connection Operation Description Auth Paginated Config body Destructive listList All Connection Memberships Yes Yes No No getRetrieve Connection Membership Yes No No No addAdd a Connection Membership Yes No Yes No updateUpdate Connection Membership Yes No Yes No removeDelete Connection Membership Yes No No Yes
Operation Usage listfivetran beta user connection list --user-id <user-id>getfivetran beta user connection get --user-id <user-id> --connection-id <connection-id>addfivetran beta user connection add --user-id <user-id> --config <json>updatefivetran beta user connection update --user-id <user-id> --connection-id <connection-id> --config <json>removefivetran beta user connection remove --user-id <user-id> --connection-id <connection-id>
fivetran beta user groupSupported operations for fivetran beta user group Operation Description Auth Paginated Config body Destructive listList All Group Memberships Yes Yes No No getRetrieve Group Membership Details Yes No No No addAdd Group Membership Yes No Yes No updateUpdate Group Membership Yes No Yes No removeDelete Group Membership Yes No No Yes
Operation Usage listfivetran beta user group list --user-id <user-id>getfivetran beta user group get --user-id <user-id> --group-id <group-id>addfivetran beta user group add --user-id <user-id> --config <json>updatefivetran beta user group update --user-id <user-id> --group-id <group-id> --config <json>removefivetran beta user group remove --user-id <user-id> --group-id <group-id>
fivetran beta webhookSupported operations for fivetran beta webhook Operation Description Auth Paginated Config body Destructive listList all Webhooks Yes Yes No No getRetrieve Webhook Details Yes No No No updateUpdate a Webhook Yes No Yes No deleteDelete a Webhook Yes No No Yes testTest a Webhook Yes No Yes No create-accountCreate an Account Webhook Yes No Yes No create-groupCreate a Group Webhook Yes No Yes No
Operation Usage listfivetran beta webhook listgetfivetran beta webhook get --webhook-id <webhook-id>updatefivetran beta webhook update --webhook-id <webhook-id> --config <json>deletefivetran beta webhook delete --webhook-id <webhook-id>testfivetran beta webhook test --webhook-id <webhook-id> --config <json>create-accountfivetran beta webhook create-account --config <json>create-groupfivetran beta webhook create-group --group-id <group-id> --config <json>
For the full list of supported commands in the CLI, run:
Connector SDK commands Connector SDK commands are available at the top level (not under beta):
Connector SDK command Description fivetran initScaffold a new custom connector project. fivetran debugTest connector locally. fivetran deployDeploy custom connector to Fivetran. fivetran resetDelete the current local state.json and warehouse.db files. It lets you rerun fivetran debug. fivetran packagePackage connector code into a zip file for REST API deployment workflows.
fivetran --help and fivetran version are CLI-level commands. fivetran --help groups Fivetran CLI commands and Connector SDK plugin commands into separate sections. fivetran version shows version information for both the CLI and Connector SDK.
By default, the CLI outputs readable tables for list responses and aligned key/value sections for detail responses. Switch to JSON for scripting.
Not every command supports every flag. Use --help on a specific command to see the options available for that command.
Example command Output format fivetran beta connection listReadable table fivetran beta connection get --connection-id <connection_id>Readable detail view fivetran beta connection list --output jsonCompact JSON
Table output shows up to 8 columns by default. Use --all-columns or --output json to see all available fields.
Output flags:
Flag Effect --output {text,json}Output format (default text) --output-file PATHWrite rendered output to a file --fields a,b,cExplicit fields or columns to show for supported read commands --all-columnsShow all columns instead of the default 8 for paginated commands
Behavior flags:
Flag Effect --yesAutomatically confirm destructive operations without prompting --non-interactiveAccept the default choice for destructive confirmation prompts --limit NMaximum total results to retrieve across all pages (paginated commands only)
Example usage Create and update resources Pass configuration as a JSON file or inline JSON:
fivetran beta connection create --config-file connection.json
fivetran beta connection-schema column update --connection-id <connection_id> --schema-name <schema> --table-name <table> --column-name <column> --config '{"enabled":false}'
Destructive operations Commands that delete or permanently modify resources prompt for confirmation in interactive mode. In non-interactive mode, use --yes to confirm:
fivetran beta connection delete --connection-id <connection_id> --yes