Google Super
GOOGLESUPER_EDIT_FILE
Updates an existing Google Drive file by overwriting its entire content with new text (max 10MB). This action allows users to change the content of a Drive file, ensuring that the latest updates are saved and available without creating a new file. Users can specify different MIME types for the content being uploaded, facilitating various file formats.
Remote googlesuper
Other tools also called GOOGLESUPER_EDIT_FILE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"content": {
"type": "string",
"title": "Content",
"description": "New textual content to overwrite the existing file; will be UTF-8 encoded for upload."
},
"file_id": {
"type": "string",
"title": "File Id",
"description": "Identifier of the Google Drive file to update."
},
"mime_type": {
"type": "string",
"title": "Mime Type",
"default": "text/plain",
"examples": [
"text/plain",
"text/html",
"text/csv",
"application/json",
"application/xml",
"application/javascript"
],
"description": "MIME type of the 'content' being uploaded; must accurately represent its format."
}
}
}