Documentation Index
Fetch the complete documentation index at: https://docs.plura.ai/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Manage folders in Google Drive. Call actions with automationType, action, and params from any workflow node that supports automations.
Authentication
- OAuth 2.0 — shares the same Google connection used by Google Sheets. Both integrations use
automationType: "google_sheets".
Available Actions
Click any action to jump to its example payload.
Examples
Example 1: Drive - List Folders
List folders in Google Drive
{
"automationType": "google_sheets",
"nodeId": "sheets-list-folders-001",
"nodeParams": {
"action": "list_folders",
"params": {}
}
}
Example 2: Drive - Create Folder
Create a folder in Google Drive
{
"automationType": "google_sheets",
"nodeId": "sheets-create-folder-001",
"nodeParams": {
"action": "create_folder",
"params": {
"folderName": "Plura Sheets"
}
}
}
Example 3: Drive - Delete Folder
Delete a folder in Google Drive
{
"automationType": "google_sheets",
"nodeId": "sheets-delete-folder-001",
"nodeParams": {
"action": "delete_folder",
"params": {
"fileId": "1a2b3cFolderId"
}
}
}
Third-Party Documentation