> ## 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.

# Google Drive

> Manage folders in Google Drive

## 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.

* [List Folders](#google-drive-list-folders)
* [Create Folder](#google-drive-create-folder)
* [Delete Folder](#google-drive-delete-folder)

## Examples

<a id="google-drive-list-folders" />

#### Example 1: Drive - List Folders

List folders in Google Drive

```json theme={null}
{
  "automationType": "google_sheets",
  "nodeId": "sheets-list-folders-001",
  "nodeParams": {
    "action": "list_folders",
    "params": {}
  }
}
```

***

<a id="google-drive-create-folder" />

#### Example 2: Drive - Create Folder

Create a folder in Google Drive

```json theme={null}
{
  "automationType": "google_sheets",
  "nodeId": "sheets-create-folder-001",
  "nodeParams": {
    "action": "create_folder",
    "params": {
      "folderName": "Plura Sheets"
    }
  }
}
```

***

<a id="google-drive-delete-folder" />

#### Example 3: Drive - Delete Folder

Delete a folder in Google Drive

```json theme={null}
{
  "automationType": "google_sheets",
  "nodeId": "sheets-delete-folder-001",
  "nodeParams": {
    "action": "delete_folder",
    "params": {
      "fileId": "1a2b3cFolderId"
    }
  }
}
```

## Third-Party Documentation

* [https://developers.google.com/drive/api](https://developers.google.com/drive/api)
