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.
drive.changes.start_page_token.get · Google Workspace · v1
Details
Scopes
https://www.googleapis.com/auth/drive.metadata.readonly
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
drive_id | string | No | minLength 1; maxLength 256 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
start_page_token | string | Yes | minLength 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"
]
}