Overview
The File Input tools allow you to fetch files from specified URLs.Key Features
INPUT_PDF_FILE: Fetch PDF files from URLs.INPUT_CSV_FILE: Fetch CSV files from URLs.INPUT_DOCX_FILE: Fetch DOCX files from URLs and return the extracted text.INPUT_JSON: Input JSON data directly.INPUT_FILE: Input generic files from URLs.INPUT_TEXT: Input plain text data directly.
Tools
INPUT_PDF_FILE
Fetch PDF files from URLs for processing. Input:value(string, required): URL of the PDF file to fetch
- File content and metadata for further processing
INPUT_CSV_FILE
Fetch CSV files from URLs for data processing. Input:value(string, required): URL of the CSV file to fetch
- CSV content and metadata
INPUT_DOCX_FILE
Fetch DOCX (Word) files from URLs and return the extracted text. Input:
Output:
result: Text extracted from the DOCX file(s)
INPUT_JSON
Input JSON data directly as a string. Input:value(string, required): JSON string to parse
- Parsed JSON data ready for processing
INPUT_FILE
Input generic files from URLs. Input:
Output:
File content and metadata.
INPUT_TEXT
Input plain text data directly. Input:value(string, required): Plain text content
- Text content for processing
Examples
Example: Fetch Files from URLs
Example: JSON Data Processing
Related Input Tools
The following input tools are documented on other pages:INPUT_WEBHOOK,INPUT_SLACK_EVENT,INPUT_IMAGE_FILE,INPUT_FILE_AS_TEXT,INPUT_TWILIO_SMS: see Advanced Input ToolsINPUT_JSON_WITH_VALIDATION: see Input JSON with Validation