Google Super
GOOGLESUPER_LIST_PERMISSIONS
Tool to list a file's permissions. Use when you need to retrieve all permissions associated with a specific file or shared drive.
Remote googlesuper
Other tools also called GOOGLESUPER_LIST_PERMISSIONS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"fileId": {
"type": "string",
"title": "File Id",
"examples": [
"1234567890abcdefghijklmnopqrstuvwxyz"
],
"description": "The ID of the file or shared drive."
},
"pageSize": {
"type": "integer",
"title": "Page Size",
"default": null,
"maximum": 100,
"minimum": 1,
"nullable": true,
"description": "The maximum number of permissions to return per page. When not set for files in a shared drive, at most 100 results will be returned. When not set for files that are not in a shared drive, the entire list will be returned."
},
"pageToken": {
"type": "string",
"title": "Page Token",
"default": null,
"nullable": true,
"description": "The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response."
},
"supportsAllDrives": {
"type": "boolean",
"title": "Supports All Drives",
"default": null,
"nullable": true,
"description": "Whether the requesting application supports both My Drives and shared drives. Default: false"
},
"useDomainAdminAccess": {
"type": "boolean",
"title": "Use Domain Admin Access",
"default": null,
"nullable": true,
"description": "Issue the request as a domain administrator; if set to true, then theRequester will be granted access if the file ID parameter refers to a shared drive and the requester is an administrator of the domain to which the shared drive belongs."
},
"includePermissionsForView": {
"type": "string",
"title": "Include Permissions For View",
"default": null,
"pattern": "^published$",
"nullable": true,
"description": "Specifies which additional view's permissions to include in the response. Only 'published' is supported."
}
}
}