> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Google Drive

Creates a new shared drive.

<Note>
  External Documentation

  To learn more, visit the [Google Drive documentation](https://developers.google.com/drive/api/reference/rest/v3/drives/create).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter  | Description                                                                                                                                                                                                                                                                                                                            |
  | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Name       | The name of this shared drive.                                                                                                                                                                                                                                                                                                         |
  | Request ID | An ID, such as a random UUID, which uniquely identifies this user's request for idempotent creation of a shared drive. A repeated request by the same user and with the same request ID will avoid creating duplicates by attempting to create the same shared drive. If the shared drive already exists a 409 error will be returned. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter               | Description                                                                                                                                                                                                                                                                                                                  |
  | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Delegated User Override | Perform the action on behalf of another user, overriding the delegated user defined in the connection.<br /><br />If not specified, the delegated user is the one provided in the connection.<br /><br />Has no effect when using an OAuth connection.<br /><br />NOTE: the connection details are not edited by this input. |
</div>

## Example Output

```json theme={"dark"}
{
	"backgroundImageFile": {
		"id": "The ID of an image file in Google Drive to use for the background image.",
		"width": 0,
		"xCoordinate": 0,
		"yCoordinate": 0
	},
	"backgroundImageLink": "A short-lived link to this shared drive's background image.",
	"capabilities": {
		"canAddChildren": false,
		"canChangeCopyRequiresWriterPermissionRestriction": false,
		"canChangeDomainUsersOnlyRestriction": false,
		"canChangeDriveBackground": false,
		"canChangeDriveMembersOnlyRestriction": false,
		"canComment": false,
		"canCopy": false,
		"canDeleteChildren": false,
		"canDeleteDrive": false,
		"canDownload": false,
		"canEdit": false,
		"canListChildren": false,
		"canManageMembers": false,
		"canReadRevisions": false,
		"canRename": false,
		"canRenameDrive": false,
		"canResetDriveRestrictions": false,
		"canShare": false,
		"canTrashChildren": false
	},
	"colorRgb": "The color of this shared drive as an RGB hex string. It can only be set on a drive.drives.update request that does not set themeId.",
	"createdTime": "The time at which the shared drive was created (RFC 3339 date-time).",
	"hidden": false,
	"id": "The ID of this shared drive which is also the ID of the top level folder of this shared drive.",
	"kind": "drive#drive",
	"name": "The name of this shared drive.",
	"orgUnitId": "The organizational unit of this shared drive. This field is only populated on drives.list responses when the useDomainAdminAccess parameter is set to true.",
	"restrictions": {
		"adminManagedRestrictions": false,
		"copyRequiresWriterPermission": false,
		"domainUsersOnly": false,
		"driveMembersOnly": false
	},
	"themeId": "The ID of the theme from which the background image and color will be set. The set of possible driveThemes can be retrieved from a drive.about.get response. When not specified on a drive.drives.create request, a random theme is chosen from which the background image and color are set. This is a write-only field; it can only be set on requests that don't set colorRgb or backgroundImageFile."
}
```

## Workflow Library Example

[Create Google Drive and Send Results Via Email](https://library.blinkops.com/workflows/create-google-drive-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/create-google-drive-and-send-results-via-email/canvas" />
</div>
