Google Super

GOOGLESUPER_GET_FILE_METADATA

Tool to get a file's metadata by ID. Use when you need to retrieve the metadata for a specific file in Google Drive.

Remote googlesuper

Other tools also called GOOGLESUPER_GET_FILE_METADATA? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "fileId": {
      "type": "string",
      "title": "File Id",
      "examples": [
        "1a2b3c4d5e6f7g8h9i0j"
      ],
      "description": "The ID of the file. This is required parameter"
    },
    "includeLabels": {
      "type": "string",
      "title": "Include Labels",
      "default": null,
      "nullable": true,
      "description": "A comma-separated list of IDs of labels to include in the labelInfo part of the response."
    },
    "acknowledgeAbuse": {
      "type": "boolean",
      "title": "Acknowledge Abuse",
      "default": null,
      "nullable": true,
      "description": "Whether the user is acknowledging the risk of downloading known malware or other abusive files. This is only applicable when the alt parameter is set to media and the user is the owner of the file or an organizer of the shared drive in which the file resides."
    },
    "supportsAllDrives": {
      "type": "boolean",
      "title": "Supports All Drives",
      "default": null,
      "nullable": true,
      "description": "Whether the requesting application supports both My Drives and shared drives. This parameter will default to false."
    },
    "includePermissionsForView": {
      "type": "string",
      "title": "Include Permissions For View",
      "default": null,
      "nullable": true,
      "description": "Specifies which additional view's permissions to include in the response. Only 'published' is supported."
    }
  }
}