Skip to main content

Create Google Drive

Creates a new shared drive.

External Documentation

To learn more, visit the Google Drive documentation.

Basic Parameters

ParameterDescription
NameThe name of this shared drive.
Request IDAn 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.

Advanced Parameters

ParameterDescription
Delegated User OverridePerform the action on behalf of another user, overriding the delegated user defined in the connection.

If not specified, the delegated user is the one provided in the connection.

Has no effect when using an OAuth connection.

NOTE: the connection details are not edited by this input.

Example Output

{
"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

Workflow LibraryPreview this Workflow on desktop