Google Super

GOOGLESUPER_MOVE_FILE

Tool to move a file from one folder to another in Google Drive. Use when you need to reorganize files by changing their parent folder(s).

Remote googlesuper

Other tools also called GOOGLESUPER_MOVE_FILE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "file_id": {
      "type": "string",
      "title": "File Id",
      "examples": [
        "1XyZ..."
      ],
      "description": "The ID of the file to move."
    },
    "add_parents": {
      "type": "string",
      "title": "Add Parents",
      "default": null,
      "examples": [
        "folder_id_1"
      ],
      "nullable": true,
      "description": "The ID of the parent folder to add the file to. Google Drive files can only have one parent folder."
    },
    "ocr_language": {
      "type": "string",
      "title": "Ocr Language",
      "default": null,
      "nullable": true,
      "description": "A language hint for OCR processing during image import (ISO 639-1 code)."
    },
    "include_labels": {
      "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."
    },
    "remove_parents": {
      "type": "string",
      "title": "Remove Parents",
      "default": null,
      "examples": [
        "folder_id_3,folder_id_4"
      ],
      "nullable": true,
      "description": "A comma-separated list of parent folder IDs to remove the file from. Use this to specify the source folder."
    },
    "supports_all_drives": {
      "type": "boolean",
      "title": "Supports All Drives",
      "default": null,
      "nullable": true,
      "description": "Whether the requesting application supports both My Drives and shared drives. Set to true if moving files to or from a shared drive."
    },
    "keep_revision_forever": {
      "type": "boolean",
      "title": "Keep Revision Forever",
      "default": null,
      "nullable": true,
      "description": "Whether to set the 'keepForever' field in the new head revision. This is only applicable to files with binary content in Google Drive."
    },
    "include_permissions_for_view": {
      "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."
    },
    "use_content_as_indexable_text": {
      "type": "boolean",
      "title": "Use Content As Indexable Text",
      "default": null,
      "nullable": true,
      "description": "Whether to use the uploaded content as indexable text."
    }
  }
}