For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inBook a demo
  • Getting started
    • Introduction
    • Obtaining API keys
    • Quickstart
    • Native clients
    • Concepts
    • Embedding authentication
    • Versioning
    • Idempotent requests
    • Events
  • Configuring your connections
    • CDC streaming from databases
      • Affinity
      • Airtable
      • Amplitude
      • API
      • Apollo.io
      • Asana
      • Ascend
      • Attio
      • AWS S3
      • AWS Athena
      • AWS OpenSearch
      • Azure Blob Storage
      • Azure SQL
      • BiqQuery
      • CloudSQL (MySQL)
      • CloudSQL (Postgres)
      • Chargebee
      • ConstructionWire
      • CosmosDB
      • Customer.io
      • Databricks
      • Datadog
      • dbt Cloud
      • Delighted
      • Dialpad
      • Dittofeed
      • DynamoDB
      • Facebook Ads
      • Freshdesk
      • Front
      • FullStory
      • Google Cloud Storage
      • Github
      • Google Ads
      • Google Workspace
      • Google Sheets
      • Harmonic
      • Heap
      • Honeycomb
      • HubSpot
      • Intercom
      • Iterable
      • Jira
      • Klaviyo
      • Kustomer
      • Linear
      • Linkedin Ads
      • Lob
      • Mailercheck
      • Marketo
      • MongoDB
      • Microsoft Ads
      • MySQL
      • Netsuite
      • Outreach
      • Pardot
      • Pipedrive
      • Postgres
      • PredictLeads
      • Quickbooks
      • Recharge
      • Redshift
      • Redshift Serverless
      • Reply.io
      • Salesforce
      • Segment
      • SFTP
      • Shopify
      • Short.io
      • Slack
      • Snowflake
      • Statsig
      • Stripe
      • Survicate
      • Synapse
      • Tixr
      • Unbounce
      • Uservoice
      • Vanilla Forums
      • Webhooks
      • Zendesk Chat
      • Zendesk Support
      • ZoomInfo
  • Code examples
    • Bulk sync (ELT) from HubSpot to PostgreSQL
    • Bulk sync (ELT) from Salesforce to S3
    • Bulk sync (ELT) from Salesforce to Snowflake
    • Model sync (Reverse ETL) from MongoDB to Salesforce
  • API Reference
Logo
Log inBook a demo
On this page
  • Connection
  • Configuration
  • Example
  • Bulk Sync
  • Source
Configuring your connectionsConnection configurations

SFTP

Was this page helpful?
Previous

Shopify

Next

Supports:

  • ✅ Bulk sync source

Connection

Configuration

NameTypeDescriptionRequired
auth_modestringAuthentication Method

Accepted values: private_key ↓, password ↓
true
is_single_tablebooleanFiles are time-based snapshots

Treat the files as a single table. ↓
false
pathstringPath

The path to the directory on the SFTP server containing the files.
false
skip_linesintegerSkip first lines

Skip first N lines of each CSV file.
false
ssh_hoststringHostfalse
ssh_portintegerPortfalse
ssh_userstringUserfalse

is_single_table

When is_single_table is true
NameTypeDescriptionRequired
single_table_namestringCollection namefalse

auth_mode

When auth_mode is password
NameTypeDescriptionRequired
ssh_passwordstringPasswordtrue
When auth_mode is private_key
NameTypeDescriptionRequired
ssh_private_keystringPrivate keytrue

Example

1{
2 "name": "SFTP connection",
3 "type": "sftp",
4 "configuration": {
5 "auth_mode": "private_key",
6 "is_single_table": false,
7 "path": "/path/to/files",
8 "skip_lines": 0,
9 "ssh_host": "sftp.example.net",
10 "ssh_port": 22,
11 "ssh_private_key": "",
12 "ssh_user": "user"
13 }
14}

Bulk Sync

Source

SFTP connections may be used as a bulk sync source. No additional configuration options are required.