Integration
Google Drive
Manage approved Google Drive folders around a phone workflow.
Description
AIM AI can be configured to list, create, or remove a folder in an approved Drive location. Shared drives, parent folders, naming rules, and deletion permissions are confirmed before implementation.
Authentication
- A connected Google account using OAuth 2.0 is required.
- Exact Drive locations and approved actions are confirmed during workflow scoping.
Supported Actions (3)
These are the operations this integration can perform after the required credentials and permissions are approved.
- List Folders
- Create Folder
- Delete Folder
Examples
Use these representative payloads as a technical starting point, then replace the sample values with the approved workflow data.
Drive - List Folders
Representative workflow configuration for Drive - List Folders.
JSON
{
"automationType": "google_sheets",
"nodeId": "sheets-list-folders-001",
"nodeParams": {
"action": "list_folders",
"params": {}
}
}Drive - Create Folder
Representative workflow configuration for Drive - Create Folder.
JSON
{
"automationType": "google_sheets",
"nodeId": "sheets-create-folder-001",
"nodeParams": {
"action": "create_folder",
"params": {
"folderName": "AIM AI Sheets"
}
}
}Drive - Delete Folder
Representative workflow configuration for Drive - Delete Folder.
JSON
{
"automationType": "google_sheets",
"nodeId": "sheets-delete-folder-001",
"nodeParams": {
"action": "delete_folder",
"params": {
"fileId": "1a2b3cFolderId"
}
}
}