Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Get Google Drive changes start page token

Obtain an opaque start page token for the user change log or a selected shared drive.

Agent markdown

drive.changes.start_page_token.get · Google Workspace · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • https://www.googleapis.com/auth/drive.metadata.readonly

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
drive_idstringNominLength 1; maxLength 256

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
start_page_tokenstringYesminLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "drive_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "start_page_token": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "start_page_token"
  ]
}