Skip to main content

changes_start_page_token

Creates, updates, deletes, gets or lists a changes_start_page_token resource.

Overview

Namechanges_start_page_token
TypeResource
Idgoogleworkspace.drivev3.changes_start_page_token

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
kindstringIdentifies what kind of resource this is. Value: the fixed string "drive#startPageToken". (default: drive#startPageToken)
startPageTokenstringThe starting page token for listing future changes. The page token doesn't expire.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_start_page_tokenselectdriveId, supportsAllDrives, supportsTeamDrives, teamDriveIdGets the starting pageToken for listing future changes. For more information, see Retrieve changes.

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
driveIdstring
supportsAllDrivesboolean
supportsTeamDrivesboolean
teamDriveIdstring

SELECT examples

Gets the starting pageToken for listing future changes. For more information, see Retrieve changes.

SELECT
kind,
startPageToken
FROM googleworkspace.drivev3.changes_start_page_token
WHERE driveId = '{{ driveId }}'
AND supportsAllDrives = '{{ supportsAllDrives }}'
AND supportsTeamDrives = '{{ supportsTeamDrives }}'
AND teamDriveId = '{{ teamDriveId }}'
;