Google Drive Module
List, read, and upload Google Drive files from BPMN workflows using a service account.
Workflow Engine V 1.0.0Description
What this does
Connect your workflows to Google Drive using a Google Cloud service account, with optional Google Workspace user impersonation via domain-wide delegation. Each Environment supplies its own service-account credential, so every workspace's Drive access stays isolated.
Native Google Workspace files (Docs, Sheets, Slides) are exported via a configurable MIME type; binary files can be read or written through a base64 mode for safe round-tripping through context variables.
What you can build
- Document ingestion pipelines using
GoogleDriveListFilesTaskto discover files in a folder, thenGoogleDriveReadFileTaskto pull each one's content into a context variable. - AI summarisation flows that chain
GoogleDriveReadFileTaskinto an LLM task and write the summary back withGoogleDriveUploadFileTask. - Transcript or recording archival from voice-call workflows, uploading per-customer artifacts via
GoogleDriveUploadFileTask. - Scheduled CSV / report exports that build content in context and upload it with
mimeType: text/csv. - Knowledge-base sync jobs that periodically list a folder and feed each file into an embedding task.
See the setup guide for configuration and full task reference.