SFTP

Supports:

  • ✅ Bulk sync source

Connection

Configuration

NAMETYPEDESCRIPTIONREQUIREDREADONLY
ssh_userstringfalsefalse
ssh_hoststringfalsefalse
ssh_portintegerfalsefalse
auth_modestringAccepted values: private_key, passwordtruefalse
ssh_private_keystring(required if auth_mode is “private_key”)falsefalse
ssh_passwordstring(required if auth_mode is “password”)falsefalse
pathstringThe path to the directory on the SFTP server containing the files.falsefalse
skip_linesintegerSkip first N lines of each CSV file.falsefalse
is_single_tablebooleanTreat the files as a single table.falsefalse
single_table_namestringfalsefalse

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 "single_table_name": "",
9 "skip_lines": 0,
10 "ssh_host": "sftp.example.net",
11 "ssh_password": "",
12 "ssh_port": 22,
13 "ssh_private_key": "",
14 "ssh_user": "user"
15 }
16}