Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Delete Google Drive permission

Delete a permission from a Drive file the connected principal can access.

Agent markdown

drive.permissions.delete · Google Workspace · v1

Details

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

Scopes

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

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Raw schema

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