Reads or writes files in Google Drive. Supports downloading file content, uploading new files, and updating existing files. Requires Google OAuth credentials configured in Settings → Integrations.
google_driveThe Google Drive node connects Flusso workflows to your Google Drive storage via the Google Drive API. Use it to pull file content into a workflow for processing, generate documents and upload them to a shared Drive location, or overwrite existing files with updated content.
Files are identified by their Google Drive File ID, which appears in the URL
of any file opened in Google Drive:
https://drive.google.com/file/d/{FILE_ID}/.
For new uploads, you can optionally specify a parent folder using the folder's ID, found the
same way.
| Field | Status | Description |
|---|---|---|
| Credential | Required | Google account credential from Settings → Integrations. |
| Operation | Required |
read โ download file content.write โ upload a new file.update โ replace an existing file's content.
|
| File ID | Required for read/update | The Google Drive file ID to read or update. Find it in the file URL: https://drive.google.com/file/d/{FILE_ID}/. |
| Folder ID | Optional for write | The parent folder for new uploads. Defaults to the root of your Drive. |
| File Name | Required for write | Name for the new file including extension, e.g. report-2026-03.txt. |
| Content | Required for write/update | Content to upload. Supports {{ variable }} references. |
| MIME Type | Optional for write | Content type of the uploaded file. Default: text/plain. Examples: application/json, text/csv. |
All operations return the following fields.
| Field | Type | Description |
|---|---|---|
content | string | File content (read mode). |
file_id | string | Google Drive file ID of the created or updated file. |
file_name | string | Name of the file. |
web_url | string | URL to open the file in Google Drive. |
report-{{ trigger.output.date }}.txt.web_url output to a channel so the team can review it immediately.write, a new file is always created. To replace an existing file's content, use update and provide the existing File ID.web_url output is useful for sharing links in notification nodes after a file is created or updated.write or update operations.