Google Drive

GOOGLEDRIVE_DELETE_PERMISSION

Deletes a permission from a file by permission id. use when you need to revoke access for a specific user or group from a file.

Remote googledrive

Other tools also called GOOGLEDRIVE_DELETE_PERMISSION? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "file_id": {
      "type": "string",
      "title": "File Id",
      "examples": [
        "1a2b3c4d5e6f7g8h9i0j"
      ],
      "description": "The ID of the file or shared drive."
    },
    "permission_id": {
      "type": "string",
      "title": "Permission Id",
      "examples": [
        "1234567890"
      ],
      "description": "The ID of the permission."
    },
    "supportsAllDrives": {
      "type": "boolean",
      "title": "Supports All Drives",
      "default": null,
      "nullable": true,
      "description": "Whether the requesting application supports both My Drives and shared drives."
    },
    "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 the requester 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."
    }
  }
}