Download a file from SFTP/FTP server. IN WORKFLOWS: Files are automatically saved to Node Outputs - no manual save step needed. By default, automatically extracts text from supported document formats (PDF, DOCX, PPTX, XLSX) and includes it in the response. Text files (TXT, CSV) do not need extraction. NOTE: Streaming is not available for SFTP/FTP due to protocol limitations. Content is returned as base64. For large files (>5MB), consider transferring to cloud storage first.
Optional file name to save as on server (if not provided, derived from URL)
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "remoteFilePath": { "type": "string", "description": "Remote directory path on server where file will be uploaded. Must have trailing slash \"/\"" }, "fileUrl": { "type": "string", "description": "URL of the file to upload (e.g., https://example.com/file.pdf)" }, "fileName": { "type": "string", "description": "Optional file name to save as on server (if not provided, derived from URL)" } }, "required": [ "PCID", "remoteFilePath", "fileUrl" ]}
Download a file from SFTP/FTP server. IN WORKFLOWS: Files are automatically saved to Node Outputs - no manual save step needed. By default, automatically extracts text from supported document formats (PDF, DOCX, PPTX, XLSX) and includes it in the response. Text files (TXT, CSV) do not need extraction. NOTE: Streaming is not available for SFTP/FTP due to protocol limitations. Content is returned as base64. For large files (>5MB), consider transferring to cloud storage first.Parameters:
Parameter
Type
Required
Default
Description
remoteFilePath
string
Yes
—
Remote file path on server (e.g., testfiles/jam.jpeg)
extractText
boolean
No
true
Automatically extracts text from supported formats (PDF, DOCX, PPTX, XLSX) and includes it in the response. Text files do not need extraction. Set to false to skip extraction.
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "remoteFilePath": { "type": "string", "description": "Remote file path on server (e.g., testfiles/jam.jpeg)" }, "extractText": { "type": "boolean", "default": true, "description": "Automatically extracts text from supported formats (PDF, DOCX, PPTX, XLSX) and includes it in the response. Text files do not need extraction. Set to false to skip extraction." } }, "required": [ "PCID", "remoteFilePath" ]}