Download a file from Dropbox. 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. STREAMING IS PREFERRED: Use stream=true (default) to get a pre-authenticated downloadUrl for efficient downloading of large files. Only use stream=false for small files (<2MB) that need immediate processing.
Search for files and folders in Dropbox. Two search modes: (1) FUZZY SEARCH (default): Full-text search across filenames and content. (2) EXACT MATCH: Find files with an exact filename match within the specified path (direct children only, not recursive).
Download a file from Dropbox. 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. STREAMING IS PREFERRED: Use stream=true (default) to get a pre-authenticated downloadUrl for efficient downloading of large files. Only use stream=false for small files (<2MB) that need immediate processing.Parameters:
Parameter
Type
Required
Default
Description
path
string
Yes
—
File path in Dropbox to download
stream
boolean
No
true
RECOMMENDED: true (default). Returns a pre-authenticated downloadUrl for efficient streaming. Set to false only for small files (<2MB) requiring immediate base64 content.
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" }, "path": { "type": "string", "description": "File path in Dropbox to download" }, "stream": { "type": "boolean", "default": true, "description": "RECOMMENDED: true (default). Returns a pre-authenticated downloadUrl for efficient streaming. Set to false only for small files (<2MB) requiring immediate base64 content." }, "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", "path" ]}
Search for files and folders in Dropbox. Two search modes: (1) FUZZY SEARCH (default): Full-text search across filenames and content. (2) EXACT MATCH: Find files with an exact filename match within the specified path (direct children only, not recursive).Parameters:
Parameter
Type
Required
Default
Description
query
string
Yes
—
Search query - for fuzzy search this matches filenames and content; for exact match this must be the exact filename
path
string
No
""
Folder path to search within (e.g., “/Documents”). Empty string means root.
exactMatch
boolean
No
false
If true, find files with exact filename match (only searches direct children of path, not recursive). If false (default), performs fuzzy full-text search.
maxResults
number
No
100
Maximum number of results
fileExtensions
string[]
No
—
Filter by file extensions (e.g., [“pdf”, “docx”])
fileCategories
string[]
No
—
Filter by categories (e.g., [“image”, “document”])
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "query": { "type": "string", "description": "Search query - for fuzzy search this matches filenames and content; for exact match this must be the exact filename" }, "path": { "type": "string", "default": "", "description": "Folder path to search within (e.g., \"/Documents\"). Empty string means root." }, "exactMatch": { "type": "boolean", "default": false, "description": "If true, find files with exact filename match (only searches direct children of path, not recursive). If false (default), performs fuzzy full-text search." }, "maxResults": { "type": "number", "default": 100, "description": "Maximum number of results" }, "fileExtensions": { "type": "array", "items": { "type": "string" }, "description": "Filter by file extensions (e.g., [\"pdf\", \"docx\"])" }, "fileCategories": { "type": "array", "items": { "type": "string" }, "description": "Filter by categories (e.g., [\"image\", \"document\"])" } }, "required": [ "PCID", "query" ]}