Skip to main content

about

Creates, updates, deletes, gets or lists an about resource.

Overview

Nameabout
TypeResource
Idgoogleworkspace.drivev3.about

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
appInstalledbooleanWhether the user has installed the requesting app.
canCreateDrivesbooleanWhether the user can create shared drives.
canCreateTeamDrivesbooleanDeprecated: Use canCreateDrives instead.
driveThemesarrayA list of themes that are supported for shared drives.
exportFormatsobjectA map of source MIME type to possible targets for all supported exports.
folderColorPalettearrayThe currently supported folder colors as RGB hex strings.
importFormatsobjectA map of source MIME type to possible targets for all supported imports.
kindstringIdentifies what kind of resource this is. Value: the fixed string "drive#about". (default: drive#about)
maxImportSizesobjectA map of maximum import sizes by MIME type, in bytes.
maxUploadSizestring (int64)The maximum upload size in bytes.
storageQuotaobjectThe user's storage quota limits and usage. For users that are part of an organization with pooled storage, information about the limit and usage across all services is for the organization, rather than the individual user. All fields are measured in bytes.
teamDriveThemesarrayDeprecated: Use driveThemes instead.
userobjectThe authenticated user. (id: User)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectGets information about the user, the user's Drive, and system capabilities. For more information, see Return user info. Required: The fields parameter must be set. To return the exact fields you need, see Return specific fields.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription

SELECT examples

Gets information about the user, the user's Drive, and system capabilities. For more information, see Return user info. Required: The fields parameter must be set. To return the exact fields you need, see Return specific fields.

SELECT
appInstalled,
canCreateDrives,
canCreateTeamDrives,
driveThemes,
exportFormats,
folderColorPalette,
importFormats,
kind,
maxImportSizes,
maxUploadSize,
storageQuota,
teamDriveThemes,
user
FROM googleworkspace.drivev3.about
;