Google Drive

gd_export_file

Export a Google Workspace file (Docs, Sheets, Slides, Drawings) to a standard format. Use this for Google-native files; use gd_read_file for regular files. Supported exports: Docs→text/plain,text/html,application/pdf; Sheets→text/csv,application/pdf; Slides→application/pdf,text/plain.

Remote node2flow/google-drive

Other tools also called gd_export_file? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "file_id": {
      "type": "string",
      "description": "The ID of the Google Workspace file to export"
    },
    "mime_type": {
      "type": "string",
      "description": "Export MIME type. Docs: \"text/plain\", \"text/html\", \"application/pdf\", \"application/vnd.openxmlformats-officedocument.wordprocessingml.document\". Sheets: \"text/csv\", \"application/pdf\", \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\". Slides: \"application/pdf\", \"text/plain\"."
    }
  }
}