Connect Agentforce to Google Drive for file management, content access, and collaboration.
Tool Name | Description | Example Inputs |
---|---|---|
google_drive_search_file | Searches for files or folders based on name, type, or other criteria. | query_string: "report_q3_final", parent_folder_id: "folder_123" |
google_drive_read_file | Reads the content of a specified file. | file_id: "file_abc_789" |
google_drive_upload_file | Uploads a new file to a specified folder. | file_path: "/local/path/to/document.pdf", folder_id: "folder_xyz", file_name: "Uploaded Document.pdf" |
google_drive_create_folder | Creates a new folder in Google Drive. | folder_name: "New Project Alpha", parent_folder_id: "folder_root" |
google_drive_update_file | Updates the content or metadata of an existing file. | file_id: "file_def_456", new_content_path: "/local/path/to/updated_version.docx" |
google_drive_delete_item | Deletes a file or folder. | item_id: "file_or_folder_id_to_delete" |
google_drive_share_file | Shares a file or folder with specified users or groups, setting permissions. | file_id: "file_ghi_123", email_address: "user@example.com", role: "writer", notification_message: "FYI" |
google_drive_list_folder_contents | Lists all files and folders within a specified folder. | folder_id: "folder_jkl_789" |
https://www.googleapis.com/auth/drive
(Full access)https://www.googleapis.com/auth/drive.file
(Per-file access)https://www.googleapis.com/auth/drive.readonly
(Read-only access)file_id
or folder_id
being used.