Superglue provides native support for FTP, FTPS (FTP over SSL/TLS), and SFTP (SSH File Transfer Protocol) servers, allowing you to manage files directly within your workflows without setting up a separate integration.
Example 1: Download and Process JSON Configuration
Copy
Ask AI
// Step configuration{ "id": "getConfig", "urlHost": "ftp://<<integrationId_ftpUser>>:<<integrationId_ftpPassword>>@ftp.example.com:21", "urlPath": "/configs", "body": { "operation": "get", "path": "/production/settings.json" }, "instruction": "Download the production configuration file"}// The JSON will be automatically parsed and available as:// sourceData.getConfig.apiKey// sourceData.getConfig.endpoints.production