Polls a Google Drive folder at intervals and fires a workflow run whenever a new file appears. Requires Google OAuth credentials configured in Settings โ Integrations.
google_drive_watchMany business processes are built around file drops: a partner uploads a report to a shared folder, a team member saves an invoice, or an automated system exports a CSV. The Google Drive Watch trigger turns these manual file drops into automatic workflow triggers โ as soon as a new file appears in the watched folder, Flusso kicks off your workflow with the file details ready to use.
Flusso uses polling to detect new files. At the interval you configure (defaulting to every 5 minutes), Flusso checks the folder for files that have appeared since the last check. When one or more new files are found, a separate workflow run is started for each new file. If no new files are found, nothing happens until the next poll.
This trigger requires your Google account to be connected in Flusso. Navigate to Settings โ Integrations and connect your Google account before configuring this trigger. Once connected, credentials are stored securely and reused across all Google Drive workflows.
| Field | Status | Description |
|---|---|---|
| Credential | Required | Google account credential from Settings โ Integrations. |
| Folder ID | Required | The Google Drive folder ID to watch. Find it in the URL when browsing to the folder: https://drive.google.com/drive/folders/{FOLDER_ID} |
| Poll Interval | Optional | How often to check for new files, in minutes. Default: 5. Minimum: 1. |
| File Type Filter | Optional | Comma-separated MIME types to watch for, e.g. application/pdf,image/jpeg. Leave blank to watch all file types. |
Each workflow run triggered by this node receives the following fields describing the newly detected file.
| Field | Type | Description |
|---|---|---|
file.id | string | Google Drive file ID |
file.name | string | File name including extension |
file.mime_type | string | MIME type of the file |
file.size | number | File size in bytes |
file.created_at | string | ISO 8601 creation timestamp |
file.web_url | string | URL to open the file in Google Drive |
Watch a folder for new PDF invoices, then download and process them.
5, and set File Type Filter to application/pdf.{{ trigger.output.file.id }} as the file ID to download the detected PDF.