Google Super

GOOGLESUPER_CREATE_SHORTCUT_TO_FILE

Tool to create a shortcut to a file or folder in Google Drive. Use when you need to link to an existing Drive item from another location without duplicating it.

Remote googlesuper

Other tools also called GOOGLESUPER_CREATE_SHORTCUT_TO_FILE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name",
      "examples": [
        "My Shortcut to Important Document"
      ],
      "description": "The name of the shortcut."
    },
    "target_id": {
      "type": "string",
      "title": "Target Id",
      "examples": [
        "1_DRbC10_AYSg3tNA2c2P9H2a26n9_2VA"
      ],
      "description": "The ID of the file or folder that this shortcut points to."
    },
    "includeLabels": {
      "type": "string",
      "title": "Include Labels",
      "default": null,
      "examples": [
        "labelId1,labelId2"
      ],
      "nullable": true,
      "description": "A comma-separated list of IDs of labels to include in the labelInfo part of the response."
    },
    "target_mime_type": {
      "type": "string",
      "title": "Target Mime Type",
      "default": null,
      "examples": [
        "application/vnd.google-apps.document"
      ],
      "nullable": true,
      "description": "The MIME type of the target file or folder. While optional, providing it can be helpful."
    },
    "supportsAllDrives": {
      "type": "boolean",
      "title": "Supports All Drives",
      "default": null,
      "examples": [
        true
      ],
      "nullable": true,
      "description": "Whether the requesting application supports both My Drives and shared drives. Recommended to set to true if interacting with shared drives."
    },
    "keepRevisionForever": {
      "type": "boolean",
      "title": "Keep Revision Forever",
      "default": null,
      "examples": [
        false
      ],
      "nullable": true,
      "description": "Whether to set the 'keepForever' field in the new head revision."
    },
    "ignoreDefaultVisibility": {
      "type": "boolean",
      "title": "Ignore Default Visibility",
      "default": null,
      "examples": [
        false
      ],
      "nullable": true,
      "description": "Whether to ignore the domain's default visibility settings for the created file."
    },
    "includePermissionsForView": {
      "type": "string",
      "title": "Include Permissions For View",
      "default": null,
      "examples": [
        "published"
      ],
      "nullable": true,
      "description": "Specifies which additional view's permissions to include in the response. Only 'published' is supported."
    }
  }
}